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
7 changes: 4 additions & 3 deletions Application/app/faq/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Faqs() {
return (
<>

<Box bg="gray.50" py="10">
<Box bg={{ base: "gray.50", _dark: "blackAlpha.400" }} py="10">
<Container maxW="700px" textAlign="center">
<Heading color='fg' size='lg' mb='10'>
Frequently Asked Questions
Expand All @@ -16,18 +16,19 @@ export default function Faqs() {
<Accordion.Item
key={faq.title}
value={faq.title}
bg='white'
bg={{ base: "white", _dark: "gray.800" }}
borderRadius='xl'
boxShadow='md'
overflow='hidden'
borderWidth="1px"
>
<Accordion.ItemTrigger
display='flex'
alignItems='center'
px='5'
py='4'
cursor='pointer'
_hover={{bg: 'gray.100'}}
_hover={{bg: { base: "gray.100", _dark: "gray.700" } }}
>


Expand Down
21 changes: 17 additions & 4 deletions Application/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
import Link from 'next/link';
import { Box, Flex, HStack } from '@chakra-ui/react';
import { Box, Flex, Stack } from '@chakra-ui/react';

const Footer = () => {
return (
<Box bg="blue.900" px={8} py={4} color="white" borderBottom="1px solid" borderColor="whiteAlpha.200">
<Box
as="footer"
bg="blue.900"
px={8}
py={{ base: 8, md: 4 }}
color="white"
borderTop="1px solid"
borderColor="whiteAlpha.200">

<Flex h={16} alignItems="center" justifyContent="center">
<p className="text-sm text-gray-400">&copy; 2026 Coding United Club. All rights reserved.</p>

<HStack gap={8} alignItems="center" mx="auto">
<Stack
direction={{ base: "column", sm: "row"}}
gap={{ base: 4, md: 8}}
alignItems="center"
mx="auto">

<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>
</HStack>
</Stack>
</Flex>
</Box>
);
Expand Down
27 changes: 23 additions & 4 deletions Application/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,31 @@ import { ColorModeButton } from "@/components/ui/color-mode";
export default function Navbar() {

return (
<Box bg="blue.900" px={8} py={4} color="white" borderBottom="1px solid" borderColor="whiteAlpha.200">
<Flex h={16} alignItems="center" justifyContent="space-between">
<Box
bg="blue.900"
px={8} py={4}
color="white"
borderBottom="1px solid"
borderColor="whiteAlpha.200"
>

<Flex
h={16}
alignItems="center"
justifyContent="space-between"
>

<Link href="/">
<Text fontSize="xl" fontWeight="bold" cursor="pointer" _hover={{ color: "blue.400" }}>Coding United</Text>
<Text
fontSize="xl"
fontWeight="bold"
cursor="pointer"
_hover={{ color: "blue.400" }}>Coding United
</Text>

</Link>
<HStack gap={8}>
<HStack
gap={8}>
<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>
Expand Down