16 Commits

Author SHA1 Message Date
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
e543c76b79 Update src/app/page.tsx 2026-02-19 01:47:38 +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
13 changed files with 1350 additions and 71 deletions

View File

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

View File

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

View File

@@ -5,7 +5,7 @@
"textRules": { "textRules": {
"title": { "title": {
"required": true, "required": true,
"example": "Frequently Asked Questions", "example": "FAQ",
"minChars": 2, "minChars": 2,
"maxChars": 50 "maxChars": 50
}, },
@@ -58,7 +58,7 @@
"ariaLabel?": "string (default: 'FAQ section')", "ariaLabel?": "string (default: 'FAQ section')",
"className?": "string" "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": [ "do": [
"Use for help pages", "Use for help pages",
"Use for support sections", "Use for support sections",

View File

@@ -5,7 +5,7 @@
"textRules": { "textRules": {
"title": { "title": {
"required": true, "required": true,
"example": "Frequently Asked Questions", "example": "FAQ",
"minChars": 2, "minChars": 2,
"maxChars": 50 "maxChars": 50
}, },
@@ -57,7 +57,7 @@
"ariaLabel?": "string (default: 'FAQ section')", "ariaLabel?": "string (default: 'FAQ section')",
"className?": "string" "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": [ "do": [
"Use for help pages", "Use for help pages",
"Use for support sections", "Use for support sections",

View File

@@ -5,7 +5,7 @@
"textRules": { "textRules": {
"title": { "title": {
"required": true, "required": true,
"example": "Frequently Asked Questions", "example": "FAQ",
"minChars": 2, "minChars": 2,
"maxChars": 50 "maxChars": 50
}, },
@@ -83,7 +83,7 @@
"ariaLabel?": "string (default: 'FAQ section')", "ariaLabel?": "string (default: 'FAQ section')",
"className?": "string" "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": [ "do": [
"Use for help pages", "Use for help pages",
"Use for support sections", "Use for support sections",

View File

@@ -5,7 +5,7 @@
"textRules": { "textRules": {
"sideTitle": { "sideTitle": {
"required": true, "required": true,
"example": "Frequently Asked Questions", "example": "FAQ",
"minChars": 2, "minChars": 2,
"maxChars": 100 "maxChars": 100
}, },
@@ -57,7 +57,7 @@
"ariaLabel?": "string (default: 'FAQ section')", "ariaLabel?": "string (default: 'FAQ section')",
"className?": "string" "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": [ "do": [
"Use for help pages", "Use for help pages",
"Use for support sections", "Use for support sections",

View File

@@ -83,7 +83,7 @@
"textBoxButtonClassName?": "string", "textBoxButtonClassName?": "string",
"textBoxButtonTextClassName?": "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": [ "do": [
"Use for premium feature showcases with elegant visual polish", "Use for premium feature showcases with elegant visual polish",
"Best for 2-6 features", "Best for 2-6 features",

View File

@@ -99,7 +99,7 @@
"cardButtonClassName?": "string", "cardButtonClassName?": "string",
"cardButtonTextClassName?": "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": [ "do": [
"Use for feature showcases with visual engagement", "Use for feature showcases with visual engagement",
"Best for 2-6 features", "Best for 2-6 features",

View File

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

File diff suppressed because it is too large Load Diff

View File

@@ -9,6 +9,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import ContactForm from '@/components/form/ContactForm';
import { Archive, BookOpen, ExternalLink, FileText, HelpCircle, Info, Search, Sparkles, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react"; import { Archive, BookOpen, ExternalLink, FileText, HelpCircle, Info, Search, Sparkles, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react";
export default function DOJPortalPage() { export default function DOJPortalPage() {
@@ -27,16 +28,16 @@ export default function DOJPortalPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal" brandName="Jeffrey Epstein & CO. "
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Documents", id: "documents" }, { name: "Stord", id: "documents" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Access Documents", href: "#documents" text: "Access Stord", href: "#documents"
}} }}
/> />
</div> </div>
@@ -49,12 +50,12 @@ export default function DOJPortalPage() {
tagIcon={Sparkles} tagIcon={Sparkles}
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
buttons={[ buttons={[
{ text: "Access Documents", href: "#documents" }, { text: "Access Stord", href: "#documents" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
]} ]}
dashboard={{ dashboard={{
title: "Official Information Hub", logoIcon: House, title: "Yo yo yo", logoIcon: House,
imageSrc: "https://img.b2bpic.net/free-photo/discussing-busines-report_1098-16536.jpg", buttons: [ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771466064486-2pf1ovwe.png", buttons: [
{ text: "View All", href: "#documents" }, { text: "View All", href: "#documents" },
{ text: "Download", href: "#" } { text: "Download", href: "#" }
], ],
@@ -64,21 +65,21 @@ export default function DOJPortalPage() {
{ icon: Settings } { icon: Settings }
], ],
stats: [ stats: [
{ title: "Documents", values: [500, 750, 1200], description: "Official records available." }, { title: "Stord", values: [500, 750, 1200], description: "Official records available." },
{ title: "Cases", values: [25, 42, 68], description: "Documented cases." }, { title: "Yo yo yo yo", values: [25, 42, 68], description: "Documented cases." },
{ title: "Updates", values: [15, 28, 45], description: "Recent updates." } { title: "hello how we doin", values: [15, 28, 45], description: "Recent updates." }
], ],
chartTitle: "Document Growth", chartData: [ chartTitle: "Yo yo yo yo yoyoyo ", chartData: [
{ value: 50 }, { value: 50 },
{ value: 75 }, { value: 75 },
{ value: 90 }, { value: 90 },
{ value: 60 }, { value: 60 },
{ value: 85 } { value: 85 }
], ],
listTitle: "Latest Releases", listItems: [ listTitle: "yoyyoyayoayoa", listItems: [
{ icon: FileText, title: "New Court Filing", status: "Published" }, { icon: FileText, title: "New Court Filing", status: "Published" },
{ icon: ExternalLink, title: "Investigation Summary", status: "Available" }, { icon: ExternalLink, title: "yoyyoyayoayoa", status: "Availableayoyyoyayoayoa" },
{ icon: Search, title: "Case Documentation", status: "Public" } { icon: Search, title: "Case Documentation", status: "yoyyoyayoayoa" }
], ],
searchPlaceholder: "Search documents..." searchPlaceholder: "Search documents..."
}} }}
@@ -87,10 +88,10 @@ export default function DOJPortalPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<MediaAbout <MediaAbout
title="About This Portal" title="Flow 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." description="YO ayo yoyyoyayoayoayoyyoyayoayoayoyyoyayoayoayoyyoyayoayoayoyyoyayoayoayoyyoyayoayoa"
tag="Official Information" 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" imageAlt="doj department justice legal official"
buttons={[ buttons={[
{ text: "Learn More", href: "#documents" } { text: "Learn More", href: "#documents" }
@@ -103,7 +104,7 @@ export default function DOJPortalPage() {
<FeatureCardTwentySix <FeatureCardTwentySix
title="Document Categories" title="Document Categories"
description="Access organized collections of officially released materials" description="Access organized collections of officially released materials"
tag="Available Now" tag="Availableayoyyoyayoayoa Now"
features={[ 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 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
@@ -125,7 +126,7 @@ export default function DOJPortalPage() {
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardFourteen <MetricCardFourteen
title="Comprehensive Documentation Available Through Official Channels" title="Comprehensive Documentation Availableayoyyoyayoayoa Through Official Channels"
tag="Official Records" tag="Official Records"
metrics={[ metrics={[
{ {
@@ -142,14 +143,14 @@ export default function DOJPortalPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitText <FaqSplitText
sideTitle="Frequently Asked Questions" sideTitle="FAQ"
sideDescription="Find answers to common questions about this information portal and available documents" sideDescription="Find answers to common questions about this information portal and available documents"
faqs={[ 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: "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." 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."
@@ -168,19 +169,16 @@ export default function DOJPortalPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactForm
tag="Stay Informed" title="Get hello how we doin on New Releases"
title="Get Updates on New Releases"
description="Subscribe to receive notifications when new official information becomes available through this portal." description="Subscribe to receive notifications when new official information becomes available through this portal."
background={{ variant: "plain" }} tag="Stay Informed"
imageSrc="https://img.b2bpic.net/free-photo/diverse-group-designers-working-project-together-sitting-table-with-laptops-blueprints-talking_74855-9789.jpg" tagIcon={Send}
imageAlt="Contact section"
useInvertedBackground={false}
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Subscribe" buttonText="Subscribe"
termsText="We respect your privacy and will only send updates about newly released official information." 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> </div>
@@ -192,7 +190,7 @@ export default function DOJPortalPage() {
title: "Navigation", items: [ title: "Navigation", items: [
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "About", href: "#about" }, { label: "About", href: "#about" },
{ label: "Documents", href: "#documents" } { label: "Stord", href: "#documents" }
] ]
}, },
{ {
@@ -215,4 +213,4 @@ export default function DOJPortalPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -83,11 +83,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal" brandName="Jeffrey Epstein & CO. "
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"/"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Documents","id":"documents"}, {"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"}, {"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"} {"name":"Contact","id":"contact"}
]} ]}
@@ -101,7 +101,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<FooterBaseCard <FooterBaseCard
logoText="DOJ Portal" logoText="DOJ Portal"
columns={[ columns={[
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"}]}, {"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":"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":"#"}]} {"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]} ]}
@@ -130,11 +130,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal" brandName="Jeffrey Epstein & CO. "
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"/"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Documents","id":"documents"}, {"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"}, {"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"} {"name":"Contact","id":"contact"}
]} ]}
@@ -156,7 +156,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<FooterBaseCard <FooterBaseCard
logoText="DOJ Portal" logoText="DOJ Portal"
columns={[ columns={[
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"}]}, {"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":"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":"#"}]} {"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]} ]}
@@ -184,11 +184,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal" brandName="Jeffrey Epstein & CO. "
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"/"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Documents","id":"documents"}, {"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"}, {"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"} {"name":"Contact","id":"contact"}
]} ]}
@@ -235,7 +235,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<FooterBaseCard <FooterBaseCard
logoText="DOJ Portal" logoText="DOJ Portal"
columns={[ columns={[
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"}]}, {"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":"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":"#"}]} {"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]} ]}

View File

@@ -35,11 +35,11 @@ export default function ShopPage() {
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal" brandName="Jeffrey Epstein & CO. "
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"/"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Documents","id":"documents"}, {"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"}, {"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"} {"name":"Contact","id":"contact"}
]} ]}
@@ -53,7 +53,7 @@ export default function ShopPage() {
<FooterBaseCard <FooterBaseCard
logoText="DOJ Portal" logoText="DOJ Portal"
columns={[ columns={[
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"}]}, {"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":"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":"#"}]} {"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]} ]}
@@ -81,11 +81,11 @@ export default function ShopPage() {
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="DOJ Information Portal" brandName="Jeffrey Epstein & CO. "
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"/"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Documents","id":"documents"}, {"name":"Stord","id":"documents"},
{"name":"FAQ","id":"faq"}, {"name":"FAQ","id":"faq"},
{"name":"Contact","id":"contact"} {"name":"Contact","id":"contact"}
]} ]}
@@ -107,7 +107,7 @@ export default function ShopPage() {
<FooterBaseCard <FooterBaseCard
logoText="DOJ Portal" logoText="DOJ Portal"
columns={[ columns={[
{"title":"Navigation","items":[{"label":"Home","href":"/"},{"label":"About","href":"#about"},{"label":"Documents","href":"#documents"}]}, {"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":"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":"#"}]} {"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Use","href":"#"},{"label":"Disclaimer","href":"#"}]}
]} ]}