From 0354922ff79a5b76da92c148eced090d071a48d5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 00:23:47 +0000 Subject: [PATCH] Add src/app/navo/page.tsx --- src/app/navo/page.tsx | 153 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 src/app/navo/page.tsx diff --git a/src/app/navo/page.tsx b/src/app/navo/page.tsx new file mode 100644 index 0000000..8cdc60d --- /dev/null +++ b/src/app/navo/page.tsx @@ -0,0 +1,153 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function NavoPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Projects", id: "/projects" }, + { name: "Vision", id: "/about" }, + { name: "Connect", id: "/connect" }, + { name: "Writing", id: "/writing" }, + { name: "Violin", id: "/violin" }, + { name: "Documentary", id: "/documentary" }, + { name: "Navo", id: "/navo" }, + { name: "Stanford", id: "/stanford" }, + ]; + + const footerColumns = [ + { + title: "Navigation", items: [ + { label: "Home", href: "/" }, + { label: "Projects", href: "/projects" }, + { label: "Vision", href: "/about" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Connect", items: [ + { label: "Calendly", href: "https://calendly.com/karu-navolab/growth-engine-demo-navo-lab" }, + { label: "Substack", href: "https://substack.com/@karuthompson" }, + { label: "X", href: "https://x.com/KaruThompson" }, + { label: "Email", href: "mailto:hello@example.com" }, + ], + }, + { + title: "Resources", items: [ + { label: "Newsletter", href: "#" }, + { label: "Blog", href: "/writing" }, + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ sustainable growth requires intelligence, strategy, and execution. We combine data analytics, market insights, and strategic partnerships to create a growth engine that works for your business.", "Our platform empowers businesses to identify opportunities, optimize operations, and scale strategically. Through automation, insights, and connectivity, we transform growth from a challenge into a competitive advantage. Whether you're a startup or an established enterprise, Navo provides the tools and expertise to drive meaningful expansion." + ]} + useInvertedBackground={true} + showBorder={true} + buttons={[{ text: "Learn About Services", href: "https://navo.lab" }]} + buttonAnimation="blur-reveal" + /> +
+ +
+ window.open("https://navo.lab", "_blank") + }, + { + id: "2", name: "Data Analytics", price: "Enterprise", imageSrc: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=400&h=300&fit=crop", imageAlt: "Data analytics platform", onProductClick: () => window.open("https://navo.lab", "_blank") + }, + { + id: "3", name: "Strategic Partnerships", price: "Ongoing", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=300&fit=crop", imageAlt: "Partnership network", onProductClick: () => window.open("https://navo.lab", "_blank") + }, + ]} + carouselMode="buttons" + tag="Business Solutions" + tagAnimation="blur-reveal" + buttons={[{ text: "Explore Full Catalog", href: "https://navo.lab" }]} + /> +
+ +
+ +
+ + +
+ ); +}