everything moved to src

This commit is contained in:
2024-11-20 16:09:31 -05:00
parent b29d1b5722
commit 5e22ba8148
88 changed files with 24 additions and 23 deletions

20
src/app/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
import Link from "next/link";
import FeaturesSection from "./components/FeaturesSection";
import About from "./components/About";
import Header from "./components/Header";
import Hero from "./components/Hero";
import Contact from "./components/Contact";
import Footer from "./components/Footer ";
export default function Home() {
return (
(<div className="bg-gray-100 min-h-screen flex flex-col">
<Header />
<Hero />
<FeaturesSection />
<About />
<Contact />
<Footer />
</div>)
);
}