diff --git a/src/app/admin/dashboard/page.tsx b/src/app/admin/dashboard/page.tsx index 493bb43..363ee95 100644 --- a/src/app/admin/dashboard/page.tsx +++ b/src/app/admin/dashboard/page.tsx @@ -5,7 +5,6 @@ import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { TrendingUp, Users, DollarSign, Activity } from "lucide-react"; export default function AdminDashboardPage() { return ( @@ -68,6 +67,7 @@ export default function AdminDashboardPage() { { title: "Support", items: [{ label: "Documentation", href: "#" }] }, ]} bottomLeftText="© 2024 PulseGaming Admin." + bottomRightText="" /> diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 73de7a4..643c0c2 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -8,15 +8,19 @@ import ContactCTA from '@/components/sections/contact/ContactCTA'; export default function CheckoutPage() { return ( - + - +

Checkout

Your items are ready. Please complete your details to finish your order.

- - + +
); diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 055e83e..ca2d32f 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -6,23 +6,26 @@ import ContactForm from '@/components/form/ContactForm'; export default function LoginPage() { return ( - - + +
diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx index a21bb0f..1f8d44c 100644 --- a/src/app/profile/page.tsx +++ b/src/app/profile/page.tsx @@ -5,17 +5,19 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS export default function ProfilePage() { return ( - - + +

My Profile

Account management settings will be displayed here.

diff --git a/src/app/register/page.tsx b/src/app/register/page.tsx index fd95625..4ce5e4e 100644 --- a/src/app/register/page.tsx +++ b/src/app/register/page.tsx @@ -6,23 +6,26 @@ import ContactForm from '@/components/form/ContactForm'; export default function RegisterPage() { return ( - - + +
diff --git a/src/app/returns/page.tsx b/src/app/returns/page.tsx index 30b8b98..696b4d0 100644 --- a/src/app/returns/page.tsx +++ b/src/app/returns/page.tsx @@ -8,15 +8,19 @@ import ContactCTA from '@/components/sections/contact/ContactCTA'; export default function ReturnsPage() { return ( - + - +

Returns

Need to return an item? Our process is simple and hassle-free.

- - + +
);