diff --git a/src/components/UI/downloads/DownloadsTable.tsx b/src/components/UI/downloads/DownloadsTable.tsx
index 83ae1ba097..d621574e15 100644
--- a/src/components/UI/downloads/DownloadsTable.tsx
+++ b/src/components/UI/downloads/DownloadsTable.tsx
@@ -3,7 +3,16 @@ import {
Tabs,
TabList,
Tab,
+ Table,
+ Tbody,
+ Thead,
+ Tr,
+ Th,
+ Td,
+ TableContainer,
Text,
+ TabPanel,
+ TabPanels,
} from '@chakra-ui/react';
export const DownloadsTable = () => {
@@ -22,6 +31,7 @@ export const DownloadsTable = () => {
bg: '#11866f',
color: '#f0f2e2',
}}
+ borderRight='2px solid #11866f'
>
{
fontWeight={700}
textTransform='uppercase'
textAlign='center'
+ fontSize='sm'
>
LINUX
@@ -40,6 +51,7 @@ export const DownloadsTable = () => {
bg: '#11866f',
color: '#f0f2e2',
}}
+ borderRight='2px solid #11866f'
>
{
fontWeight={700}
textTransform='uppercase'
textAlign='center'
+ fontSize='sm'
>
MACOS
@@ -58,6 +71,7 @@ export const DownloadsTable = () => {
bg: '#11866f',
color: '#f0f2e2',
}}
+ borderRight='2px solid #11866f'
>
{
fontWeight={700}
textTransform='uppercase'
textAlign='center'
+ fontSize='sm'
>
WINDOWS
@@ -76,6 +91,7 @@ export const DownloadsTable = () => {
bg: '#11866f',
color: '#f0f2e2',
}}
+ borderRight='2px solid #11866f'
>
{
fontWeight={700}
textTransform='uppercase'
textAlign='center'
+ fontSize='sm'
>
IOS
@@ -101,13 +118,95 @@ export const DownloadsTable = () => {
fontWeight={700}
textTransform='uppercase'
textAlign='center'
+ fontSize='sm'
>
ANDROID
+
+
+
+
+
+
+ |
+
+ Release
+
+ |
+
+
+ Commit
+
+ |
+
+
+ Kind
+
+ |
+
+
+ Arch
+
+ |
+
+
+ Size
+
+ |
+
+
+
+
+
+
- Test
)
}
\ No newline at end of file