'use client'; import React from "react"; import {motion} from "framer-motion"; import {useThemeColors} from "@/utils/useThemeColors"; import ContactHero from "@/components/Contact/Section/ContactHero"; import ContactFormSection from "@/components/Contact/Section/ContactFormSection"; import Section from "@/components/Section"; const Contact = () => { const colors = useThemeColors(); return (
); }; export default Contact;