Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 19ed8fef05 | |||
| a2fd32c00b | |||
| 604e21b183 | |||
| 9fbdc526ea | |||
| 7f09ebcaf5 | |||
| 7fdd9901fc | |||
| d2590930ce | |||
| 36236b4047 | |||
| e7c96b6e6d | |||
| fb7de328fe | |||
| 2d0f6494d6 | |||
| 871e4f8957 | |||
| c347d79832 | |||
| e543c76b79 | |||
| 357199a380 | |||
| 9503d91f6e | |||
| f2c312f2ca | |||
| b7f10dec16 | |||
| 3fb0d4a38a | |||
| 5cca3da4c4 | |||
| 72f07901d1 | |||
| 718b6bea47 | |||
| 6e3f45cfac | |||
| 3c197b9514 | |||
| 8ed2c03169 | |||
| cdaa37b2a1 | |||
| 8da8740b72 |
@@ -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:**
|
||||||
|
|
||||||
|
|||||||
@@ -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)",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ export default function BlogPage() {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -26,16 +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: "Resources", id: "resources" },
|
|
||||||
{ 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>
|
||||||
|
|
||||||
@@ -47,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"
|
||||||
/>
|
/>
|
||||||
@@ -66,9 +65,9 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigation", items: [
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About", href: "#about" },
|
||||||
{ label: "Documents", href: "#documents" },
|
{ label: "Stord", href: "#documents" }
|
||||||
{ label: "Resources", href: "#resources" }
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
1285
src/app/layout.tsx
1285
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -2,20 +2,22 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
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 { 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() {
|
export default function DOJPortalPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -26,26 +28,70 @@ 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: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Documents", id: "documents" },
|
{ name: "Stord", id: "documents" },
|
||||||
{ name: "Resources", id: "resources" },
|
|
||||||
{ 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 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>
|
||||||
|
|
||||||
<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" }
|
||||||
@@ -58,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
|
||||||
@@ -80,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={[
|
||||||
{
|
{
|
||||||
@@ -97,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."
|
||||||
@@ -123,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>
|
||||||
|
|
||||||
@@ -145,9 +188,9 @@ export default function DOJPortalPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigation", items: [
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About", href: "#about" },
|
||||||
{ label: "Documents", href: "#documents" },
|
{ label: "Stord", href: "#documents" }
|
||||||
{ label: "Resources", href: "#resources" }
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -83,15 +83,13 @@ 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":"Resources","id":"resources"},
|
|
||||||
{"name":"FAQ","id":"faq"},
|
{"name":"FAQ","id":"faq"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -103,7 +101,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="DOJ Portal"
|
logoText="DOJ Portal"
|
||||||
columns={[
|
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":"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":"#"}]}
|
||||||
]}
|
]}
|
||||||
@@ -120,7 +118,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -132,15 +130,13 @@ 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":"Resources","id":"resources"},
|
|
||||||
{"name":"FAQ","id":"faq"},
|
{"name":"FAQ","id":"faq"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -160,7 +156,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="DOJ Portal"
|
logoText="DOJ Portal"
|
||||||
columns={[
|
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":"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":"#"}]}
|
||||||
]}
|
]}
|
||||||
@@ -176,7 +172,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -188,15 +184,13 @@ 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":"Resources","id":"resources"},
|
|
||||||
{"name":"FAQ","id":"faq"},
|
{"name":"FAQ","id":"faq"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -241,7 +235,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="DOJ Portal"
|
logoText="DOJ Portal"
|
||||||
columns={[
|
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":"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":"#"}]}
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export default function ShopPage() {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -35,15 +35,13 @@ 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":"Resources","id":"resources"},
|
|
||||||
{"name":"FAQ","id":"faq"},
|
{"name":"FAQ","id":"faq"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -55,7 +53,7 @@ export default function ShopPage() {
|
|||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="DOJ Portal"
|
logoText="DOJ Portal"
|
||||||
columns={[
|
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":"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":"#"}]}
|
||||||
]}
|
]}
|
||||||
@@ -71,7 +69,7 @@ export default function ShopPage() {
|
|||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="text-shift"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="sharp"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="blurBottom"
|
background="blurBottom"
|
||||||
@@ -83,15 +81,13 @@ 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":"Resources","id":"resources"},
|
|
||||||
{"name":"FAQ","id":"faq"},
|
{"name":"FAQ","id":"faq"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"}
|
||||||
{"name":"Shop","id":"/shop"}
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -111,7 +107,7 @@ export default function ShopPage() {
|
|||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="DOJ Portal"
|
logoText="DOJ Portal"
|
||||||
columns={[
|
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":"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":"#"}]}
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user