Update src/app/admin/page.tsx

This commit is contained in:
2026-05-24 09:13:20 +00:00
parent 11f9cbd486
commit f3ac1cd8ee

View File

@@ -22,47 +22,49 @@ export default function AdminPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Templates", id: "/templates" },
{ name: "Freebies", id: "/freebies" },
{ name: "About", id: "/about" },
{ name: "Admin", id: "/admin" },
]}
brandName="BrightBytee Studios"
/>
</div>
<div style={{ backgroundImage: "url('https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EACxAErYjKmkktsc1OnkSFxcSZ/uploaded-1779613980939-kyufwnfu.jpg')", backgroundSize: 'cover', backgroundAttachment: 'fixed' }}>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Templates", id: "/templates" },
{ name: "Freebies", id: "/freebies" },
{ name: "About", id: "/about" },
{ name: "Admin", id: "/admin" },
]}
brandName="BrightBytee Studios"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Admin Control Portal"
description="Securely manage templates, monitor sales, and view analytics for the entire studio ecosystem."
imageSrc="http://img.b2bpic.net/free-photo/portrait-exhausted-workaholic-man-manager-typing-financial-strategy-using-laptop-computer-while-sitting-desk-table-business-company-office_482257-2321.jpg"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Admin Control Portal"
description="Securely manage templates, monitor sales, and view analytics for the entire studio ecosystem."
imageSrc="http://img.b2bpic.net/free-photo/portrait-exhausted-workaholic-man-manager-typing-financial-strategy-using-laptop-computer-while-sitting-desk-table-business-company-office_482257-2321.jpg"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Manage Operations"
description="Direct access to product lifecycle and customer support ticketing."
plans={[
{ id: "a1", badge: "Analytics", price: "₹N/A", subtitle: "Live statistics", features: ["Sales Tracking", "Template Performance", "User Insights"] },
{ id: "a2", badge: "Support", price: "₹N/A", subtitle: "Customer hub", features: ["Manage Tickets", "Refund Processing", "Priority Communications"] }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Manage Operations"
description="Direct access to product lifecycle and customer support ticketing."
plans={[
{ id: "a1", badge: "Analytics", price: "₹N/A", subtitle: "Live statistics", features: ["Sales Tracking", "Template Performance", "User Insights"] },
{ id: "a2", badge: "Support", price: "₹N/A", subtitle: "Customer hub", features: ["Manage Tickets", "Refund Processing", "Priority Communications"] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="BrightBytee Studios"
copyrightText="© 2025 BrightBytee Studios. All Rights Reserved."
/>
<div id="footer" data-section="footer">
<FooterCard
logoText="BrightBytee Studios"
copyrightText="© 2025 BrightBytee Studios. All Rights Reserved."
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>