33 lines
893 B
TypeScript
Executable file
33 lines
893 B
TypeScript
Executable file
import Navigation from "@/components/Navigation";
|
|
import Hero from "@/components/Hero";
|
|
import Clients from "@/components/Clients";
|
|
import Partners from "@/components/Partners";
|
|
import About from "@/components/About";
|
|
import Stats from "@/components/Stats";
|
|
import Services from "@/components/Services";
|
|
import Projects from "@/components/Projects";
|
|
import TechStack from "@/components/TechStack";
|
|
import Gallery from "@/components/Gallery";
|
|
import Testimonial from "@/components/Testimonial";
|
|
import Contact from "@/components/Contact";
|
|
import Footer from "@/components/Footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Navigation />
|
|
<Hero />
|
|
<Clients />
|
|
<Partners />
|
|
<About />
|
|
<Stats />
|
|
<Services />
|
|
<Projects />
|
|
<TechStack />
|
|
<Gallery />
|
|
<Testimonial />
|
|
<Contact />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|