Update src/app/page.tsx

This commit is contained in:
2026-01-20 14:38:36 +00:00
parent 6dfafd7e19
commit 9dc90adafa

View File

@@ -7,7 +7,6 @@ import AboutMetric from "@/components/sections/about/AboutMetric";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { BookOpen, Users, Award, TrendingUp, Globe } from "lucide-react";
import Link from "next/link";
export default function HomePage() {
return (
@@ -25,16 +24,13 @@ export default function HomePage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandedName="BogCoder"
brandName="BogCoder"
navItems={[
{ name: "Courses", id: "courses" },
{ name: "About", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" }
]}
button={{
text: "Enroll Now", href: "/contact"
}}
/>
</div>
@@ -151,4 +147,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}