Merge version_2 into main #7

Merged
bender merged 1 commits from version_2 into main 2026-04-29 10:13:23 +00:00

View File

@@ -1,83 +1,62 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TextAbout from '@/components/sections/about/TextAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import ReactLenis from "lenis/react";
export default function AdminPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmall"
background="fluid"
cardStyle="inset"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="medium"
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>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Catalog", id: "/catalog" },
{ name: "Admin", id: "/admin" },
]}
brandName="Little Swan Baby"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Catalog", id: "/catalog" },
{ name: "Admin", id: "/admin" },
]}
brandName="Little Swan Baby"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Admin Dashboard Access"
sections={[
{
heading: "Restricted Access", content: { text: "This area is strictly for authorized personnel only. Please contact support for credentials." },
},
]}
/>
</div>
<div id="content" className="py-20 px-6">
<h1 className="text-4xl font-bold">Admin Dashboard</h1>
<p>Welcome to the admin panel.</p>
</div>
<div id="about" data-section="about">
<TextAbout
useInvertedBackground={false}
title="Dashboard Overview"
tag="Security"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Contact", href: "#"},
],
},
{
title: "Socials", items: [
{
label: "Instagram", href: "https://www.instagram.com/_little_swan_baby"},
{
label: "Telegram", href: "https://t.me/swan_baby_1"},
],
},
]}
bottomLeftText="© 2024 Little Swan Baby"
bottomRightText="All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "#" },
],
},
{
title: "Socials", items: [
{ label: "Instagram", href: "https://www.instagram.com/_little_swan_baby" },
{ label: "Telegram", href: "https://t.me/swan_baby_1" },
],
},
]}
bottomLeftText="© 2024 Little Swan Baby"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}