3 Commits

Author SHA1 Message Date
bb5c488eb9 Update src/app/returns/page.tsx 2026-05-23 12:17:45 +00:00
42c966505e Update src/app/checkout/page.tsx 2026-05-23 12:17:44 +00:00
4b9c850af6 Update src/app/admin/dashboard/page.tsx 2026-05-23 12:17:44 +00:00
3 changed files with 21 additions and 9 deletions

View File

@@ -5,7 +5,6 @@ import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import { TrendingUp, Users, DollarSign, Activity } from "lucide-react";
export default function AdminDashboardPage() { export default function AdminDashboardPage() {
return ( return (
@@ -68,6 +67,7 @@ export default function AdminDashboardPage() {
{ title: "Support", items: [{ label: "Documentation", href: "#" }] }, { title: "Support", items: [{ label: "Documentation", href: "#" }] },
]} ]}
bottomLeftText="© 2024 PulseGaming Admin." bottomLeftText="© 2024 PulseGaming Admin."
bottomRightText=""
/> />
</div> </div>
</ReactLenis> </ReactLenis>

View File

@@ -8,15 +8,21 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function CheckoutPage() { export default function CheckoutPage() {
return ( return (
<ThemeProvider> <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root> <ReactLenis root>
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Checkout", id: "/checkout" }, { name: "Returns", id: "/returns" }]} brandName="PulseGaming" /> <div id="nav" data-section="nav">
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Checkout", id: "/checkout" }, { name: "Returns", id: "/returns" }]} />
</div>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto"> <div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Checkout</h1> <h1 className="text-4xl font-bold mb-8">Checkout</h1>
<p>Your items are ready. Please complete your details to finish your order.</p> <p>Your items are ready. Please complete your details to finish your order.</p>
</div> </div>
<ContactCTA tag="Support" title="Need help with checkout?" description="Reach out if you have any trouble finishing your order." buttons={[{ text: "Support", href: "#" }]} /> <div id="contact" data-section="contact">
<FooterSimple columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]} bottomLeftText="© 2024 PulseGaming" bottomRightText="Privacy Policy" /> <ContactCTA tag="Support" title="Need help with checkout?" description="Reach out if you have any trouble finishing your order." buttons={[{ text: "Support", href: "#" }]} background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]} bottomLeftText="© 2024 PulseGaming" bottomRightText="Privacy Policy" />
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -8,15 +8,21 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function ReturnsPage() { export default function ReturnsPage() {
return ( return (
<ThemeProvider> <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root> <ReactLenis root>
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Checkout", id: "/checkout" }, { name: "Returns", id: "/returns" }]} brandName="PulseGaming" /> <div id="nav" data-section="nav">
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Checkout", id: "/checkout" }, { name: "Returns", id: "/returns" }]} />
</div>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto"> <div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Returns</h1> <h1 className="text-4xl font-bold mb-8">Returns</h1>
<p>Need to return an item? Our process is simple and hassle-free.</p> <p>Need to return an item? Our process is simple and hassle-free.</p>
</div> </div>
<ContactCTA tag="Returns" title="Questions about returns?" description="Our support team is here to assist with any return requests." buttons={[{ text: "Contact", href: "#" }]} /> <div id="contact" data-section="contact">
<FooterSimple columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]} bottomLeftText="© 2024 PulseGaming" bottomRightText="Privacy Policy" /> <ContactCTA tag="Returns" title="Questions about returns?" description="Our support team is here to assist with any return requests." buttons={[{ text: "Contact", href: "#" }]} background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]} bottomLeftText="© 2024 PulseGaming" bottomRightText="Privacy Policy" />
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );