H
This commit is contained in:
27
src/pages/Index.tsx
Normal file
27
src/pages/Index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user