Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove contact us section #241

Merged
merged 1 commit into from
Jan 20, 2025
Merged
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
96 changes: 0 additions & 96 deletions django_project/frontend/src/pages/About/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,102 +177,6 @@ export default function AboutPage() {
</Flex>
</Box>



{/* Contact Us Section */}
<Box bg="gray.100" py="50px" px="20px">
<Heading as="h2" fontSize="36px" color="black" fontWeight="bold" mb="30px" textAlign="center">
Contact Us
</Heading>
<Flex justify="center">
<Box width={{ base: "100%", md: "60%" }}>
<form>
{/* First Row - Name and Last Name */}
<Flex mb="20px" justify="space-between" flexWrap="wrap">
<Box width={{ base: "100%", md: "48%" }} mb={{ base: "20px", md: "0" }}>
<Text fontWeight="bold" mb="8px" color="gray.700">First Name</Text>
<Input
placeholder="First Name"
size="lg"
bg="white"
border="1px solid gray"
mb="20px"
_focus={{ borderColor: "green.500" }}
/>
</Box>
<Box width={{ base: "100%", md: "48%" }} mb={{ base: "20px", md: "0" }}>
<Text fontWeight="bold" mb="8px" color="gray.700">Last Name</Text>
<Input
placeholder="Last Name"
size="lg"
bg="white"
border="1px solid gray"
mb="20px"
_focus={{ borderColor: "green.500" }}
/>
</Box>
</Flex>

{/* Second Row - Email and Organisation */}
<Flex mb="20px" justify="space-between" flexWrap="wrap">
<Box width={{ base: "100%", md: "48%" }} mb={{ base: "20px", md: "0" }}>
<Text fontWeight="bold" mb="8px" color="gray.700">Email</Text>
<Input
placeholder="Your Email"
size="lg"
bg="white"
border="1px solid gray"
mb="20px"
_focus={{ borderColor: "green.500" }}
/>
</Box>
<Box width={{ base: "100%", md: "48%" }} mb={{ base: "20px", md: "0" }}>
<Text fontWeight="bold" mb="8px" color="gray.700">Organisation</Text>
<Input
placeholder="Organisation"
size="lg"
bg="white"
border="1px solid gray"
mb="20px"
_focus={{ borderColor: "green.500" }}
/>
</Box>
</Flex>

{/* Third Row - Additional Details */}
<Box mb="20px">
<Text fontWeight="bold" mb="8px" color="gray.700">Additional Details</Text>
<Textarea
placeholder="Provide additional details"
size="lg"
bg="white"
border="1px solid gray"
_focus={{ borderColor: "green.500" }}
height="200px"
resize="vertical"
/>
</Box>


{/* Button Section - Placing Button on Right */}
<Flex justify="flex-end">
<Button
backgroundColor="dark_green.800"
_hover={{ backgroundColor: "light_green.400" }}
fontWeight={700}
w="20%"
color="white.a700"
borderRadius={5}
p={4}
>
Submit
</Button>
</Flex>
</form>
</Box>
</Flex>
</Box>

{/* Footer */}
<Footer />
</>
Expand Down
Loading