Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-02-26 10:29:30 +00:00
Showing only changes of commit a6723dcd1c - Show all commits

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
@@ -49,8 +49,14 @@ export default function HomePage() {
headingFontWeight="semibold" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingInline
navItems={navItems} navItems={[
{ name: "Home", id: "#home" },
{ name: "About", id: "#about" },
{ name: "Events", id: "#events" },
{ name: "Members", id: "#members" },
{ name: "Contact", id: "#contact" }
]}
brandName="Computer Club" brandName="Computer Club"
button={{ text: "Join Us", href: "/contact" }} button={{ text: "Join Us", href: "/contact" }}
/> />