Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Application/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ export default function Contact() {

return (

<Box py={{ base: 10, md: 16 }} bg='gray.50' minH='100vh'>
<Box py={{ base: 10, md: 16 }} bg='bg.muted' minH='100vh'>

<Container maxW='lg'>

<Box bg='white' rounded='xl' shadow='md' borderWidth='1px' borderColor='gray.200' p={{ base: 6, md: 8 }}>
<Box bg='bg.panel' rounded='xl' shadow='md' borderWidth='1px' borderColor='border' p={{ base: 6, md: 8 }}>

<Fieldset.Root size="lg" mx='auto' maxW="md" color='black' textAlign="center">
<Fieldset.Root size="lg" mx='auto' maxW="md" color='fg' textAlign="center">

<Stack gap={2} textAlign='center' mb={6}>

<Fieldset.Legend fontSize='xl' color='black' fontWeight='bold'>
<Fieldset.Legend fontSize='xl' color='fg' fontWeight='bold'>
Contact details
</Fieldset.Legend>

<Fieldset.HelperText color='gray.600'>
<Fieldset.HelperText color='fg.muted'>
Please provide your contact details below and we will reach out to you soon!
</Fieldset.HelperText>
</Stack>
Expand Down
2 changes: 1 addition & 1 deletion Application/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Footer = () => {
<Link href="/" className="hover:text-blue-400 transition-colors">Home</Link>
<Link href="/about" className="hover:text-blue-400 transition-colors">About Us</Link>
<Link href="/faq" className="hover:text-blue-400 transition-colors">FAQ</Link>
<Link href="/session" className="hover:text-blue-400 transition-colors">Recordings</Link>
<Link href="/contact" className="hover:text-blue-400 transition-colors">Contact</Link>
</Stack>
</Flex>
</Box>
Expand Down
1 change: 0 additions & 1 deletion Application/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export default function Navbar() {
<Link href="/" className="hover:text-blue-400 transition-colors">Home</Link>
<Link href="/about" className="hover:text-blue-400 transition-colors">About Us</Link>
<Link href="/faq" className="hover:text-blue-400 transition-colors">FAQ</Link>
<Link href="/session" className="hover:text-blue-400 transition-colors">Recordings</Link>
<Link href="/contact" className="hover:text-blue-400 transition-colors">Contact</Link>
</HStack>
<ColorModeButton />
Expand Down
Loading