diff --git a/src/components/UI/downloads/SpecificVersionsSection.tsx b/src/components/UI/downloads/SpecificVersionsSection.tsx new file mode 100644 index 0000000000..29fa2ecf16 --- /dev/null +++ b/src/components/UI/downloads/SpecificVersionsSection.tsx @@ -0,0 +1,44 @@ +import { Box, Flex, Image, Stack } from '@chakra-ui/react'; +import { FC } from 'react'; + +interface Props { + children: React.ReactNode; +} + +export const SpecificVersionsSection: FC = ({ children }) => { + return ( + + + {/* TODO: use NextImage */} + Gopher facing right + + + + + Specific Versions + + + {children} + + + ); +}; \ No newline at end of file diff --git a/src/components/UI/downloads/index.ts b/src/components/UI/downloads/index.ts index 11310c63fc..8b41b706fc 100644 --- a/src/components/UI/downloads/index.ts +++ b/src/components/UI/downloads/index.ts @@ -1,3 +1,4 @@ export * from './DownloadsHero'; export * from './DownloadsSection'; export * from './DownloadsTable'; +export * from './SpecificVersionsSection' diff --git a/src/pages/downloads.tsx b/src/pages/downloads.tsx index c612af2d6c..acdcea53c4 100644 --- a/src/pages/downloads.tsx +++ b/src/pages/downloads.tsx @@ -2,7 +2,7 @@ import { Code, Link, ListItem, Stack, Text, UnorderedList } from '@chakra-ui/rea import type { NextPage } from 'next'; import { useState } from 'react'; -import { DownloadsHero, DownloadsSection, DownloadsTable } from '../components/UI/downloads'; +import { DownloadsHero, DownloadsSection, DownloadsTable, SpecificVersionsSection } from '../components/UI/downloads'; import { DataTable } from '../components/UI'; import { @@ -51,12 +51,7 @@ const DownloadsPage: NextPage = () => { } /> - + If you're looking for a specific release, operating system or architecture, @@ -92,7 +87,7 @@ const DownloadsPage: NextPage = () => { Signatures for details). - +