Skip to content

Commit

Permalink
Merge pull request #31 from AI4Bharat/react-django
Browse files Browse the repository at this point in the history
Modified Hero Area Buttons
  • Loading branch information
Shanks0465 authored Sep 5, 2024
2 parents d87d936 + 6f1c600 commit 13c0ea9
Showing 1 changed file with 65 additions and 65 deletions.
130 changes: 65 additions & 65 deletions frontend/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,71 +61,71 @@ export default function Hero() {
academia, industry, and government sectors.
</Text>
<Wrap>
<Link href={`${imagePrefix}/areas/xlit`}>
<Button
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
XLIT
</Button>
</Link>
<Link href={`${imagePrefix}/areas/nmt`}>
<Button
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
NMT
</Button>
</Link>
<Link href={`${imagePrefix}/areas/asr`}>
<Button
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
ASR
</Button>
</Link>
<Link href={`${imagePrefix}/areas/tts`}>
<Button
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
TTS
</Button>
</Link>
<Link href={`${imagePrefix}/areas/llm`}>
<Button
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
LLMs
</Button>
</Link>
<Button
as="a"
href={`${imagePrefix}/areas/xlit`}
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
XLIT
</Button>
<Button
as="a"
href={`${imagePrefix}/areas/nmt`}
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
NMT
</Button>
<Button
as="a"
href={`${imagePrefix}/areas/asr`}
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
ASR
</Button>
<Button
as="a"
href={`${imagePrefix}/areas/tts`}
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
TTS
</Button>
<Button
as="a"
href={`${imagePrefix}/areas/llm`}
rounded={"full"}
size={"lg"}
fontWeight={"normal"}
px={6}
colorScheme={"red"}
bg={"red.400"}
_hover={{ bg: "red.500" }}
>
LLMs
</Button>
</Wrap>
</Stack>
<Flex
Expand Down

0 comments on commit 13c0ea9

Please sign in to comment.