Integrates www.gigafibre.ca (React/Vite) into the monorepo. Full git history accessible via `git log -- apps/website/`. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
623 B
TypeScript
26 lines
623 B
TypeScript
import Header from "@/components/layout/Header";
|
|
import Hero from "@/components/sections/Hero";
|
|
import Services from "@/components/sections/Services";
|
|
import About from "@/components/sections/About";
|
|
import Clients from "@/components/sections/Clients";
|
|
import Contact from "@/components/sections/Contact";
|
|
import Footer from "@/components/layout/Footer";
|
|
|
|
const Index = () => {
|
|
return (
|
|
<div className="min-h-screen">
|
|
<Header />
|
|
<main>
|
|
<Hero />
|
|
<Services />
|
|
<About />
|
|
<Clients />
|
|
<Contact />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Index;
|