'use client'; import React from "react"; import ContactCTA from "@/components/Home/Sections/ContactCTA"; import HomeServices from "@/components/Home/Sections/HomeServices"; import TechStack from "@/components/Home/Sections/TechStack"; import Section from "@/components/Section"; import {motion} from "framer-motion"; import {useThemeColors} from "@/utils/useThemeColors"; import Hero from "@/components/Home/Sections/Hero"; const Home = () => { const colors = useThemeColors(); return (
{/*
*/} {/* */} {/*
*/}
); }; export default Home;