import Contact from "../../Components/contact/Contact" import { useFetchData } from "../../Hooks/useFetchData"; const Page = () => { const { data, isLoading } = useFetchData('api/home'); return (
) } export default Page