This commit is contained in:
2026-01-30 00:25:07 +01:00
parent 03cd75576c
commit 593df01f0b
92 changed files with 0 additions and 0 deletions

27
src/pages/Index.tsx Normal file
View File

@@ -0,0 +1,27 @@
import Header from "@/components/Header";
import Hero from "@/components/Hero";
import Partners from "@/components/Partners";
import Values from "@/components/Values";
import Services from "@/components/Services";
import ProjectShowcase from "@/components/ProjectShowcase";
import Process from "@/components/Process";
import Contact from "@/components/Contact";
import Footer from "@/components/Footer";
const Index = () => {
return (
<div className="min-h-screen bg-background">
<Header />
<Hero />
<Partners />
<Values />
<Services />
<ProjectShowcase />
<Process />
<Contact />
<Footer />
</div>
);
};
export default Index;