Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f2c312f2ca | |||
| b7f10dec16 | |||
| 3fb0d4a38a | |||
| 5cca3da4c4 | |||
| 72f07901d1 | |||
| 718b6bea47 | |||
| 6e3f45cfac | |||
| 3c197b9514 | |||
| 8ed2c03169 | |||
| cdaa37b2a1 | |||
| 8da8740b72 |
@@ -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"
|
||||||
@@ -31,7 +31,6 @@ export default function BlogPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Documents", id: "documents" },
|
{ name: "Documents", id: "documents" },
|
||||||
{ name: "Resources", id: "resources" },
|
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -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: "Documents", href: "#documents" }
|
||||||
{ label: "Resources", href: "#resources" }
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -92,4 +91,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1316,4 +1316,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,20 +2,21 @@
|
|||||||
|
|
||||||
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 { 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"
|
||||||
@@ -28,9 +29,9 @@ export default function DOJPortalPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="DOJ Information Portal"
|
brandName="DOJ Information Portal"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Documents", id: "documents" },
|
{ name: "Documents", id: "documents" },
|
||||||
{ name: "Resources", id: "resources" },
|
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -40,6 +41,50 @@ export default function DOJPortalPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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 Documents", href: "#documents" },
|
||||||
|
{ text: "Learn More", href: "#about" }
|
||||||
|
]}
|
||||||
|
dashboard={{
|
||||||
|
title: "Official Information Hub", logoIcon: House,
|
||||||
|
imageSrc: "https://img.b2bpic.net/free-photo/discussing-busines-report_1098-16536.jpg", buttons: [
|
||||||
|
{ text: "View All", href: "#documents" },
|
||||||
|
{ text: "Download", href: "#" }
|
||||||
|
],
|
||||||
|
sidebarItems: [
|
||||||
|
{ icon: House, active: true },
|
||||||
|
{ icon: FileText },
|
||||||
|
{ icon: Settings }
|
||||||
|
],
|
||||||
|
stats: [
|
||||||
|
{ title: "Documents", values: [500, 750, 1200], description: "Official records available." },
|
||||||
|
{ title: "Cases", values: [25, 42, 68], description: "Documented cases." },
|
||||||
|
{ title: "Updates", values: [15, 28, 45], description: "Recent updates." }
|
||||||
|
],
|
||||||
|
chartTitle: "Document Growth", chartData: [
|
||||||
|
{ value: 50 },
|
||||||
|
{ value: 75 },
|
||||||
|
{ value: 90 },
|
||||||
|
{ value: 60 },
|
||||||
|
{ value: 85 }
|
||||||
|
],
|
||||||
|
listTitle: "Latest Releases", listItems: [
|
||||||
|
{ icon: FileText, title: "New Court Filing", status: "Published" },
|
||||||
|
{ icon: ExternalLink, title: "Investigation Summary", status: "Available" },
|
||||||
|
{ icon: Search, title: "Case Documentation", status: "Public" }
|
||||||
|
],
|
||||||
|
searchPlaceholder: "Search documents..."
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MediaAbout
|
<MediaAbout
|
||||||
title="About This Portal"
|
title="About This Portal"
|
||||||
@@ -145,9 +190,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: "Documents", href: "#documents" }
|
||||||
{ label: "Resources", href: "#resources" }
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -170,4 +215,4 @@ export default function DOJPortalPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
@@ -88,10 +88,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Documents","id":"documents"},
|
{"name":"Documents","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":"Documents","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"
|
||||||
@@ -137,10 +135,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Documents","id":"documents"},
|
{"name":"Documents","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":"Documents","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"
|
||||||
@@ -193,10 +189,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Documents","id":"documents"},
|
{"name":"Documents","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":"Documents","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":"#"}]}
|
||||||
]}
|
]}
|
||||||
@@ -251,4 +245,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
@@ -40,10 +40,8 @@ export default function ShopPage() {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Documents","id":"documents"},
|
{"name":"Documents","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":"Documents","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"
|
||||||
@@ -88,10 +86,8 @@ export default function ShopPage() {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"About","id":"about"},
|
{"name":"About","id":"about"},
|
||||||
{"name":"Documents","id":"documents"},
|
{"name":"Documents","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":"Documents","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":"#"}]}
|
||||||
]}
|
]}
|
||||||
@@ -121,4 +117,4 @@ export default function ShopPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user