From dd49f2aa7af4b8679db7e82eb00e2b8bc0605b2d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:20:24 +0000 Subject: [PATCH] Update src/app/journal/page.tsx --- src/app/journal/page.tsx | 171 +++++++++++++++------------------------ 1 file changed, 66 insertions(+), 105 deletions(-) diff --git a/src/app/journal/page.tsx b/src/app/journal/page.tsx index b1cdfd4..4fe0ea2 100644 --- a/src/app/journal/page.tsx +++ b/src/app/journal/page.tsx @@ -3,11 +3,54 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function JournalPage() { + const navItems = [ + { name: "HOME", id: "/" }, + { name: "STORE", id: "/store" }, + { name: "MANIFESTO", id: "/manifesto" }, + { name: "COMMUNITY", id: "/community" }, + { name: "JOURNAL", id: "/journal" }, + { name: "ABOUT", id: "/about" }, + ]; + + const footerColumns = [ + { + title: "NAVIGATE", items: [ + { label: "Home", href: "/" }, + { label: "Store", href: "/store" }, + { label: "Manifesto", href: "/manifesto" }, + { label: "Community", href: "/community" }, + ], + }, + { + title: "RESOURCES", items: [ + { label: "Journal", href: "/journal" }, + { label: "About", href: "/about" }, + { label: "Contact", href: "/contact" }, + { label: "FAQ", href: "#" }, + ], + }, + { + title: "COMMUNITY", items: [ + { label: "Instagram", href: "https://instagram.com" }, + { label: "Twitter", href: "https://twitter.com" }, + { label: "Discord", href: "#" }, + { label: "Events", href: "#" }, + ], + }, + { + title: "LEGAL", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Shipping Info", href: "#" }, + { label: "Returns", href: "#" }, + ], + }, + ]; + return ( - {/* Navbar */} -