Merge version_11 into main

Merge version_11 into main
This commit was merged in pull request #13.
This commit is contained in:
2026-01-08 15:51:29 +00:00

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroSplitAvatars from '@/components/sections/hero/HeroSplitAvatars'; import HeroSplitAvatars from '@/components/sections/hero/HeroSplitAvatars';
import TagAbout from '@/components/sections/about/TagAbout'; import TagAbout from '@/components/sections/about/TagAbout';
import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen'; import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen';
@@ -35,11 +35,18 @@ export default function LandingPage() {
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <NavbarStyleCentered
brandName="Edgetabs" navItems={[
{ name: "Hero", id: "hero" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Products", id: "products" },
{ name: "Pricing", id: "pricing" }
]}
button={{ button={{
text: "Shop Now", href: "products", onClick: () => scrollToSection('products') text: "Shop Now", href: "products", onClick: () => scrollToSection('products')
}} }}
brandName="Edgetabs"
/> />
</div> </div>