Update src/app/admin/page.tsx

This commit is contained in:
2026-05-24 09:07:36 +00:00
parent 3c42ac9ee6
commit 946e5b2f8e

View File

@@ -7,92 +7,64 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
export default function LandingPage() {
export default function AdminPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
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 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>
<div id="footer" data-section="footer">
<FooterCard
logoText="BrightBytee Studios"
copyrightText="© 2025 BrightBytee Studios. All Rights Reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}