features section

This commit is contained in:
2026-04-15 14:56:27 +02:00
parent b3221a5cac
commit 72f924080a
2 changed files with 2 additions and 3 deletions
+2
View File
@@ -1,11 +1,13 @@
import HeroSection from "@/components/sections/HeroSection"; import HeroSection from "@/components/sections/HeroSection";
import WorksSection from "@/components/sections/WorksSection"; import WorksSection from "@/components/sections/WorksSection";
import FeatureSection from "@/components/sections/FeatureSection";
export default function Home() { export default function Home() {
return ( return (
<main className=" bg-brand-beige text-brand-black flex flex-col items-center justify-center"> <main className=" bg-brand-beige text-brand-black flex flex-col items-center justify-center">
<HeroSection /> <HeroSection />
<WorksSection /> <WorksSection />
<FeatureSection />
</main> </main>
); );
} }
-3
View File
@@ -56,9 +56,6 @@ export const ProjectCard = ({
</div> </div>
</div> </div>
{/* Bottom separator */} {/* Bottom separator */}
{isTheLast && <div className="w-full h-px bg-brand-brown/20" />} {isTheLast && <div className="w-full h-px bg-brand-brown/20" />}
</div> </div>