Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-04-12 01:36:10 +00:00

View File

@@ -6,7 +6,6 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import LegalSection from '@/components/legal/LegalSection';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { CheckCircle, ShieldCheck, Zap } from "lucide-react";
@@ -29,11 +28,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Dashboard", id: "#hero" },
{ name: "Features", id: "#features" },
{ name: "FAQ", id: "#faq" },
{ name: "Performance", id: "#metric" },
{ name: "Legal", id: "#legal" },
{ name: "Dashboard", id: "hero" },
{ name: "Features", id: "features" },
{ name: "FAQ", id: "faq" },
{ name: "Performance", id: "metric" },
{ name: "Legal", id: "legal" },
]}
brandName="TekDino NetAssist"
/>
@@ -110,22 +109,14 @@ export default function LandingPage() {
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Legal Notice"
sections={[{ title: "Terms of Use", content: "Standard terms apply." }, { title: "Privacy Policy", content: "We value your privacy." }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Product", items: [{ label: "Features", href: "#" }, { label: "Security", href: "#" }]
title: "Product", items: [{ label: "Features", href: "#" }, { label: "Security", href: "#" }]
},
{
title: "Support", items: [{ label: "Docs", href: "#" }, { label: "API", href: "#" }]
title: "Support", items: [{ label: "Docs", href: "#" }, { label: "API", href: "#" }]
}
]}
bottomLeftText="TekDino © 2024"