"use client"; import HeroHome from "@/sections/HeroHome"; import FeaturesBlocks from "@/sections/FeaturesBlocks"; import FeaturesZigZag from "@/sections/FeaturesZigzag"; import Newsletter from "@/sections/Newsletter/Newsletter"; import Aos from "aos"; import "aos/dist/aos.css"; import { useEffect } from "react"; import React from "react"; import { CenterAllignedWithVideoHero, WaitingListWithImageHero, } from "@/sections/Hero"; import PageWrapper from "@/components/Utilities/PageWrapper"; import Footer from "@/components/Footer"; export default function Home() { useEffect(() => { Aos.init({ delay: 50, easing: "ease-out-cubic", once: true, offset: 50, }); }, []); return ( <> {/* Page sections */} {/* */} {/* */} {/* */} {/* */} {/* */} {/* ========== END HEADER ========== */} {/* ========== MAIN CONTENT ========== */} {/* */} {/* ========== END MAIN CONTENT ========== */} {/* ========== FOOTER ========== */} {/* ========== END FOOTER ========== */} {/* */} ); }