24 Commits

Author SHA1 Message Date
508c93d5be Merge version_4 into main
Merge version_4 into main
2026-02-19 01:55:03 +00:00
19ed8fef05 Update src/app/shop/page.tsx 2026-02-19 01:54:59 +00:00
a2fd32c00b Update src/app/shop/[id]/page.tsx 2026-02-19 01:54:58 +00:00
604e21b183 Update src/app/page.tsx 2026-02-19 01:54:57 +00:00
9fbdc526ea Update src/app/layout.tsx 2026-02-19 01:54:56 +00:00
7f09ebcaf5 Update src/app/blog/page.tsx 2026-02-19 01:54:55 +00:00
7fdd9901fc Update registry/components/FeatureHoverPattern.json 2026-02-19 01:54:54 +00:00
d2590930ce Update registry/components/FeatureBorderGlow.json 2026-02-19 01:54:54 +00:00
36236b4047 Update registry/components/FaqSplitText.json 2026-02-19 01:54:53 +00:00
e7c96b6e6d Update registry/components/FaqSplitMedia.json 2026-02-19 01:54:52 +00:00
fb7de328fe Update registry/components/FaqDouble.json 2026-02-19 01:54:52 +00:00
2d0f6494d6 Update registry/components/FaqBase.json 2026-02-19 01:54:51 +00:00
871e4f8957 Update fontThemes.json 2026-02-19 01:54:50 +00:00
c347d79832 Update docs/REGISTRY_STANDARDS.md 2026-02-19 01:54:49 +00:00
1dc82360de Merge version_4 into main
Merge version_4 into main
2026-02-19 01:47:42 +00:00
e543c76b79 Update src/app/page.tsx 2026-02-19 01:47:38 +00:00
b46c7ea033 Merge version_4 into main
Merge version_4 into main
2026-02-19 01:46:11 +00:00
357199a380 Update src/app/page.tsx 2026-02-19 01:46:07 +00:00
9503d91f6e Merge version_3 into main
Merge version_3 into main
2026-02-19 01:38:52 +00:00
f2c312f2ca Update src/app/shop/page.tsx 2026-02-19 01:38:48 +00:00
b7f10dec16 Update src/app/shop/[id]/page.tsx 2026-02-19 01:38:47 +00:00
3fb0d4a38a Update src/app/page.tsx 2026-02-19 01:38:46 +00:00
5cca3da4c4 Update src/app/blog/page.tsx 2026-02-19 01:38:45 +00:00
72f07901d1 Merge version_2 into main
Merge version_2 into main
2026-02-19 01:35:43 +00:00
13 changed files with 1394 additions and 81 deletions

View File

@@ -193,7 +193,7 @@ Defines text length constraints for string props.
### propsSchema
Documents all component props with types and defaults.
Stord all component props with types and defaults.
**Format Rules:**

View File

@@ -108,9 +108,9 @@
"category": "serif"
},
"publicSans": {
"name": "Public Sans",
"import": "import { Public_Sans } from \"next/font/google\";",
"initialization": "const publicSans = Public_Sans({\n variable: \"--font-public-sans\",\n subsets: [\"latin\"],\n});",
"name": "yoyyoyayoayoa Sans",
"import": "import { yoyyoyayoayoa_Sans } from \"next/font/google\";",
"initialization": "const publicSans = yoyyoyayoayoa_Sans({\n variable: \"--font-public-sans\",\n subsets: [\"latin\"],\n});",
"className": "${publicSans.variable}",
"cssVariable": "font-family: var(--font-public-sans), sans-serif;"
},
@@ -279,12 +279,12 @@
}
},
"publicSansInter": {
"name": "Public Sans + Inter",
"name": "yoyyoyayoayoa Sans + Inter",
"description": "Government-inspired headings with neutral body. Professional and trustworthy.",
"headingFont": "publicSans",
"bodyFont": "inter",
"imports": "import { Public_Sans } from \"next/font/google\";\nimport { Inter } from \"next/font/google\";",
"initializations": "const publicSans = Public_Sans({\n variable: \"--font-public-sans\",\n subsets: [\"latin\"],\n});\n\nconst inter = Inter({\n variable: \"--font-inter\",\n subsets: [\"latin\"],\n});",
"imports": "import { yoyyoyayoayoa_Sans } from \"next/font/google\";\nimport { Inter } from \"next/font/google\";",
"initializations": "const publicSans = yoyyoyayoayoa_Sans({\n variable: \"--font-public-sans\",\n subsets: [\"latin\"],\n});\n\nconst inter = Inter({\n variable: \"--font-inter\",\n subsets: [\"latin\"],\n});",
"classNames": "${publicSans.variable} ${inter.variable}",
"globalsCss": {
"instructions": "Update the font-family property within the existing CSS rules in globals.css (@layer base section)",

View File

@@ -5,7 +5,7 @@
"textRules": {
"title": {
"required": true,
"example": "Frequently Asked Questions",
"example": "FAQ",
"minChars": 2,
"maxChars": 50
},
@@ -58,7 +58,7 @@
"ariaLabel?": "string (default: 'FAQ section')",
"className?": "string"
},
"usageExample": "<FaqBase faqs={[{id: '1', title: 'What is your return policy?', content: 'We offer a 30-day money-back guarantee on all our products.'}, {id: '2', title: 'How long does shipping take?', content: 'Standard shipping typically takes 5-7 business days.'}]} title=\"Frequently Asked Questions\" description=\"Find answers to common questions\" textboxLayout=\"default\" useInvertedBackground={false} />",
"usageExample": "<FaqBase faqs={[{id: '1', title: 'What is your return policy?', content: 'We offer a 30-day money-back guarantee on all our products.'}, {id: '2', title: 'How long does shipping take?', content: 'Standard shipping typically takes 5-7 business days.'}]} title=\"FAQ\" description=\"Find answers to common questions\" textboxLayout=\"default\" useInvertedBackground={false} />",
"do": [
"Use for help pages",
"Use for support sections",

View File

@@ -5,7 +5,7 @@
"textRules": {
"title": {
"required": true,
"example": "Frequently Asked Questions",
"example": "FAQ",
"minChars": 2,
"maxChars": 50
},
@@ -57,7 +57,7 @@
"ariaLabel?": "string (default: 'FAQ section')",
"className?": "string"
},
"usageExample": "<FaqDouble faqs={[{id: '1', title: 'What is your return policy?', content: 'We offer a 30-day money-back guarantee on all our products.'}, {id: '2', title: 'How long does shipping take?', content: 'Standard shipping typically takes 5-7 business days.'}, {id: '3', title: 'Do you ship internationally?', content: 'Yes, we ship to over 100 countries worldwide.'}]} title=\"Frequently Asked Questions\" description=\"Find answers to common questions\" textboxLayout=\"default\" useInvertedBackground={false} />",
"usageExample": "<FaqDouble faqs={[{id: '1', title: 'What is your return policy?', content: 'We offer a 30-day money-back guarantee on all our products.'}, {id: '2', title: 'How long does shipping take?', content: 'Standard shipping typically takes 5-7 business days.'}, {id: '3', title: 'Do you ship internationally?', content: 'Yes, we ship to over 100 countries worldwide.'}]} title=\"FAQ\" description=\"Find answers to common questions\" textboxLayout=\"default\" useInvertedBackground={false} />",
"do": [
"Use for help pages",
"Use for support sections",

View File

@@ -5,7 +5,7 @@
"textRules": {
"title": {
"required": true,
"example": "Frequently Asked Questions",
"example": "FAQ",
"minChars": 2,
"maxChars": 50
},
@@ -83,7 +83,7 @@
"ariaLabel?": "string (default: 'FAQ section')",
"className?": "string"
},
"usageExample": "<FaqSplitMedia faqs={[{id: '1', title: 'What is your return policy?', content: 'We offer a 30-day money-back guarantee on all our products.'}, {id: '2', title: 'How long does shipping take?', content: 'Standard shipping typically takes 5-7 business days.'}]} imageSrc=\"/images/faq-hero.jpg\" imageAlt=\"Customer support representative\" title=\"Frequently Asked Questions\" description=\"Find answers to common questions\" textboxLayout=\"default\" useInvertedBackground={false} mediaPosition=\"left\" />",
"usageExample": "<FaqSplitMedia faqs={[{id: '1', title: 'What is your return policy?', content: 'We offer a 30-day money-back guarantee on all our products.'}, {id: '2', title: 'How long does shipping take?', content: 'Standard shipping typically takes 5-7 business days.'}]} imageSrc=\"/images/faq-hero.jpg\" imageAlt=\"Customer support representative\" title=\"FAQ\" description=\"Find answers to common questions\" textboxLayout=\"default\" useInvertedBackground={false} mediaPosition=\"left\" />",
"do": [
"Use for help pages",
"Use for support sections",

View File

@@ -5,7 +5,7 @@
"textRules": {
"sideTitle": {
"required": true,
"example": "Frequently Asked Questions",
"example": "FAQ",
"minChars": 2,
"maxChars": 100
},
@@ -57,7 +57,7 @@
"ariaLabel?": "string (default: 'FAQ section')",
"className?": "string"
},
"usageExample": "<FaqSplitText faqs={[{id: '1', title: 'How can I be part of Buenro?', content: 'You can join by signing up on our platform.'}, {id: '2', title: 'Can anyone join Buenro?', content: 'Yes! We welcome remote workers and entrepreneurs.'}]} sideTitle=\"Frequently Asked Questions\" textPosition=\"left\" useInvertedBackground={false} />",
"usageExample": "<FaqSplitText faqs={[{id: '1', title: 'How can I be part of Buenro?', content: 'You can join by signing up on our platform.'}, {id: '2', title: 'Can anyone join Buenro?', content: 'Yes! We welcome remote workers and entrepreneurs.'}]} sideTitle=\"FAQ\" textPosition=\"left\" useInvertedBackground={false} />",
"do": [
"Use for help pages",
"Use for support sections",

View File

@@ -83,7 +83,7 @@
"textBoxButtonClassName?": "string",
"textBoxButtonTextClassName?": "string"
},
"usageExample": "<ThemeProvider defaultButtonVariant=\"icon-arrow\" borderRadius=\"rounded\">\n <FeatureBorderGlow\n title=\"Powerful Features\"\n description=\"Hover over each card to reveal the glowing border effect.\"\n tag=\"Features\"\n tagIcon={Sparkles}\n textboxLayout=\"default\"\n useInvertedBackground=\"none\"\n animationType=\"fade\"\n features={[\n { icon: Zap, title: \"Fast Performance\", description: \"Lightning quick responses.\" },\n { icon: Shield, title: \"Secure\", description: \"Enterprise-grade security.\" },\n { icon: Globe, title: \"Global\", description: \"Available worldwide.\" }\n ]}\n />\n</ThemeProvider>",
"usageExample": "<ThemeProvider defaultButtonVariant=\"icon-arrow\" borderRadius=\"rounded\">\n <FeatureBorderGlow\n title=\"Powerful Features\"\n description=\"Hover over each card to reveal the glowing border effect.\"\n tag=\"Features\"\n tagIcon={Sparkles}\n textboxLayout=\"default\"\n useInvertedBackground=\"none\"\n animationType=\"fade\"\n features={[\n { icon: Zap, title: \"Fast Performance\", description: \"Lightning quick responses.\" },\n { icon: Shield, title: \"Secure\", description: \"Enterprise-grade security.\" },\n { icon: Globe, title: \"Global\", description: \"Availableayoyyoyayoayoa worldwide.\" }\n ]}\n />\n</ThemeProvider>",
"do": [
"Use for premium feature showcases with elegant visual polish",
"Best for 2-6 features",

View File

@@ -99,7 +99,7 @@
"cardButtonClassName?": "string",
"cardButtonTextClassName?": "string"
},
"usageExample": "<ThemeProvider defaultButtonVariant=\"icon-arrow\" borderRadius=\"rounded\">\n <FeatureHoverPattern\n title=\"Powerful Features\"\n description=\"Hover over each card to reveal the interactive pattern.\"\n tag=\"Features\"\n tagIcon={Sparkles}\n textboxLayout=\"default\"\n animationType=\"fade\"\n useInvertedBackground=\"none\"\n features={[\n { icon: Zap, title: \"Fast Performance\", description: \"Lightning-fast responses.\" },\n { icon: Shield, title: \"Secure\", description: \"Enterprise-grade security.\" },\n { icon: Globe, title: \"Global\", description: \"Available worldwide.\" }\n ]}\n />\n</ThemeProvider>",
"usageExample": "<ThemeProvider defaultButtonVariant=\"icon-arrow\" borderRadius=\"rounded\">\n <FeatureHoverPattern\n title=\"Powerful Features\"\n description=\"Hover over each card to reveal the interactive pattern.\"\n tag=\"Features\"\n tagIcon={Sparkles}\n textboxLayout=\"default\"\n animationType=\"fade\"\n useInvertedBackground=\"none\"\n features={[\n { icon: Zap, title: \"Fast Performance\", description: \"Lightning-fast responses.\" },\n { icon: Shield, title: \"Secure\", description: \"Enterprise-grade security.\" },\n { icon: Globe, title: \"Global\", description: \"Availableayoyyoyayoayoa worldwide.\" }\n ]}\n />\n</ThemeProvider>",
"do": [
"Use for feature showcases with visual engagement",
"Best for 2-6 features",

View File

@@ -26,16 +26,15 @@ export default function BlogPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Documents", id: "documents" },
{ name: "Resources", id: "resources" },
{ name: "Stord", id: "documents" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Access Documents", href: "#documents" }}
button={{ text: "Access Stord", href: "#documents" }}
/>
</div>
@@ -47,13 +46,13 @@ export default function BlogPage() {
<div id="blog" data-section="blog">
<BlogCardTwo
blogs={posts}
title="DOJ Information Updates"
title="DOJ Information hello how we doin"
description="Stay informed with the latest official documents, announcements, and resources from the Department of Justice"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
carouselMode="buttons"
tag="Official Updates"
tag="Official hello how we doin"
tagAnimation="opacity"
ariaLabel="DOJ blog posts section"
/>
@@ -66,9 +65,9 @@ export default function BlogPage() {
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Documents", href: "#documents" },
{ label: "Resources", href: "#resources" }
{ label: "Stord", href: "#documents" }
]
},
{

File diff suppressed because it is too large Load Diff

View File

@@ -2,13 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Archive, BookOpen, ExternalLink, FileText, HelpCircle, Info, Search } from "lucide-react";
import ContactForm from '@/components/form/ContactForm';
import { Archive, BookOpen, ExternalLink, FileText, HelpCircle, Info, Search, Sparkles, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react";
export default function DOJPortalPage() {
return (
@@ -26,26 +28,70 @@ export default function DOJPortalPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Documents", id: "documents" },
{ name: "Resources", id: "resources" },
{ name: "Stord", id: "documents" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Access Documents", href: "#documents"
text: "Access Stord", href: "#documents"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardDashboard
title="Real-Time Government Intelligence"
description="Monitor official information, verified documents, and authoritative resources from the Department of Justice."
tag="Official Portal"
tagIcon={Sparkles}
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Access Stord", href: "#documents" },
{ text: "Learn More", href: "#about" }
]}
dashboard={{
title: "Yo yo yo", logoIcon: House,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771466064486-2pf1ovwe.png", buttons: [
{ text: "View All", href: "#documents" },
{ text: "Download", href: "#" }
],
sidebarItems: [
{ icon: House, active: true },
{ icon: FileText },
{ icon: Settings }
],
stats: [
{ title: "Stord", values: [500, 750, 1200], description: "Official records available." },
{ title: "Yo yo yo yo", values: [25, 42, 68], description: "Documented cases." },
{ title: "hello how we doin", values: [15, 28, 45], description: "Recent updates." }
],
chartTitle: "Yo yo yo yo yoyoyo ", chartData: [
{ value: 50 },
{ value: 75 },
{ value: 90 },
{ value: 60 },
{ value: 85 }
],
listTitle: "yoyyoyayoayoa", listItems: [
{ icon: FileText, title: "New Court Filing", status: "Published" },
{ icon: ExternalLink, title: "yoyyoyayoayoa", status: "Availableayoyyoyayoayoa" },
{ icon: Search, title: "Case Documentation", status: "yoyyoyayoayoa" }
],
searchPlaceholder: "Search documents..."
}}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="About This Portal"
description="This portal provides comprehensive access to officially released information from the Department of Justice regarding documented cases and investigations. All materials presented here are from government sources and official records."
title="Flow This Portal"
description="YO ayo yoyyoyayoayoayoyyoyayoayoayoyyoyayoayoayoyyoyayoayoayoyyoyayoayoayoyyoyayoayoa"
tag="Official Information"
imageSrc="https://img.b2bpic.net/free-photo/discussing-busines-report_1098-16536.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771466064486-2pf1ovwe.png"
imageAlt="doj department justice legal official"
buttons={[
{ text: "Learn More", href: "#documents" }
@@ -58,7 +104,7 @@ export default function DOJPortalPage() {
<FeatureCardTwentySix
title="Document Categories"
description="Access organized collections of officially released materials"
tag="Available Now"
tag="Availableayoyyoyayoayoa Now"
features={[
{
title: "Court Filings", description: "Official court documents and legal filings from government records", imageSrc: "https://img.b2bpic.net/free-photo/closeup-working-table-workplace-office_53876-42971.jpg", imageAlt: "Court documents", buttonIcon: ExternalLink
@@ -80,7 +126,7 @@ export default function DOJPortalPage() {
<div id="metrics" data-section="metrics">
<MetricCardFourteen
title="Comprehensive Documentation Available Through Official Channels"
title="Comprehensive Documentation Availableayoyyoyayoayoa Through Official Channels"
tag="Official Records"
metrics={[
{
@@ -97,14 +143,14 @@ export default function DOJPortalPage() {
<div id="faq" data-section="faq">
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideTitle="FAQ"
sideDescription="Find answers to common questions about this information portal and available documents"
faqs={[
{
id: "1", title: "Where does this information come from?", content: "All information presented on this portal is sourced from officially released government documents, court records, and DOJ materials made available through public records requests and official channels."
},
{
id: "2", title: "How is the information organized?", content: "Documents are organized by category including court filings, investigation records, case information, and related reports. Users can browse by topic or search for specific materials."
id: "2", title: "How is the information organized?", content: "Stord are organized by category including court filings, investigation records, case information, and related reports. Users can browse by topic or search for specific materials."
},
{
id: "3", title: "Is all information verified?", content: "Yes. All materials presented are cross-referenced with official DOJ and court records to ensure accuracy and authenticity of the documentation."
@@ -123,19 +169,16 @@ export default function DOJPortalPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Stay Informed"
title="Get Updates on New Releases"
<ContactForm
title="Get hello how we doin on New Releases"
description="Subscribe to receive notifications when new official information becomes available through this portal."
background={{ variant: "plain" }}
imageSrc="https://img.b2bpic.net/free-photo/diverse-group-designers-working-project-together-sitting-table-with-laptops-blueprints-talking_74855-9789.jpg"
imageAlt="Contact section"
useInvertedBackground={false}
mediaAnimation="slide-up"
mediaPosition="right"
tag="Stay Informed"
tagIcon={Send}
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy and will only send updates about newly released official information."
onSubmit={(email) => console.log('Email submitted:', email)}
useInvertedBackground={false}
/>
</div>
@@ -145,9 +188,9 @@ export default function DOJPortalPage() {
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Documents", href: "#documents" },
{ label: "Resources", href: "#resources" }
{ label: "Stord", href: "#documents" }
]
},
{
@@ -170,4 +213,4 @@ export default function DOJPortalPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -83,15 +83,13 @@ export default function ProductPage({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Documents","id":"documents"},
{"name":"Resources","id":"resources"},
{"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -103,7 +101,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<FooterBaseCard
logoText="DOJ Portal"
columns={[
{"title":"Navigation","items":[{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"},{"label":"Resources","href":"#resources"}]},
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Stord","href":"#documents"}]},
{"title":"Information","items":[{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"},{"label":"Accessibility","href":"#"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]}
@@ -132,15 +130,13 @@ export default function ProductPage({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Documents","id":"documents"},
{"name":"Resources","id":"resources"},
{"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -160,7 +156,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<FooterBaseCard
logoText="DOJ Portal"
columns={[
{"title":"Navigation","items":[{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"},{"label":"Resources","href":"#resources"}]},
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Stord","href":"#documents"}]},
{"title":"Information","items":[{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"},{"label":"Accessibility","href":"#"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]}
@@ -188,15 +184,13 @@ export default function ProductPage({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Documents","id":"documents"},
{"name":"Resources","id":"resources"},
{"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -241,7 +235,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<FooterBaseCard
logoText="DOJ Portal"
columns={[
{"title":"Navigation","items":[{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"},{"label":"Resources","href":"#resources"}]},
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Stord","href":"#documents"}]},
{"title":"Information","items":[{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"},{"label":"Accessibility","href":"#"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]}

View File

@@ -35,15 +35,13 @@ export default function ShopPage() {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Documents","id":"documents"},
{"name":"Resources","id":"resources"},
{"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -55,7 +53,7 @@ export default function ShopPage() {
<FooterBaseCard
logoText="DOJ Portal"
columns={[
{"title":"Navigation","items":[{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"},{"label":"Resources","href":"#resources"}]},
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Stord","href":"#documents"}]},
{"title":"Information","items":[{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"},{"label":"Accessibility","href":"#"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]}
@@ -83,15 +81,13 @@ export default function ShopPage() {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal"
brandName="Jeffrey Epstein & CO. "
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Documents","id":"documents"},
{"name":"Resources","id":"resources"},
{"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -111,7 +107,7 @@ export default function ShopPage() {
<FooterBaseCard
logoText="DOJ Portal"
columns={[
{"title":"Navigation","items":[{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"},{"label":"Resources","href":"#resources"}]},
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Stord","href":"#documents"}]},
{"title":"Information","items":[{"label":"FAQ","href":"#faq"},{"label":"Contact","href":"#contact"},{"label":"Accessibility","href":"#"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]}