This commit is contained in:
YasinShaikh123
2024-06-21 16:27:26 +05:30
11 changed files with 94 additions and 47 deletions

View File

@@ -1,4 +1,4 @@
import React from "react";
import React, { useEffect } from "react";
import HeroHeader from "../Components/HeroHeader";
import {
Box,
@@ -35,6 +35,9 @@ const boxesData = [
];
const AboutUs = () => {
useEffect(() => {
window.scrollTo(0, 0);
}, []);
return (
<Box as="span">
<HeroHeader

9
src/Pages/ContactUs.jsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react'
const ContactUs = () => {
return (
<div>ContactUs</div>
)
}
export default ContactUs

View File

@@ -1,9 +1,12 @@
import React from 'react'
import React, { useEffect } from 'react'
import HeroHeader from '../Components/HeroHeader'
import { Box } from '@chakra-ui/react'
import FaqMain from '../Components/FaqMain'
const Faq = () => {
useEffect(() => {
window.scrollTo(0, 0);
}, []);
return (
<>
<HeroHeader