5 Commits

Author SHA1 Message Date
f2c312f2ca Update src/app/shop/page.tsx 2026-02-19 01:38:48 +00:00
b7f10dec16 Update src/app/shop/[id]/page.tsx 2026-02-19 01:38:47 +00:00
3fb0d4a38a Update src/app/page.tsx 2026-02-19 01:38:46 +00:00
5cca3da4c4 Update src/app/blog/page.tsx 2026-02-19 01:38:45 +00:00
72f07901d1 Merge version_2 into main
Merge version_2 into main
2026-02-19 01:35:43 +00:00
4 changed files with 61 additions and 27 deletions

View File

@@ -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" }
] ]
}, },
{ {

View File

@@ -2,13 +2,14 @@
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 (
@@ -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" }
] ]
}, },
{ {

View File

@@ -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":"#"}]}
]} ]}
@@ -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":"#"}]}
]} ]}
@@ -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":"#"}]}
]} ]}

View File

@@ -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":"#"}]}
]} ]}
@@ -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":"#"}]}
]} ]}