Add src/app/admin/analytics/page.tsx
This commit is contained in:
50
src/app/admin/analytics/page.tsx
Normal file
50
src/app/admin/analytics/page.tsx
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
"use client";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import TextAnimation from '@/components/text/TextAnimation';
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
|
||||||
|
export default function AdminAnalyticsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="expand-hover"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="compact"
|
||||||
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
|
background="blurBottom"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "#about" },
|
||||||
|
{ name: "Features", id: "#features" },
|
||||||
|
{ name: "Solutions", id: "#solutions" },
|
||||||
|
{ name: "Pricing", id: "#pricing" },
|
||||||
|
{ name: "Testimonials", id: "#testimonials" },
|
||||||
|
{ name: "Contact", id: "#contact" },
|
||||||
|
{ name: "Admin Calendar", id: "/admin/calendar" },
|
||||||
|
{ name: "Admin Analytics", id: "/admin/analytics" },
|
||||||
|
{ name: "Admin Settings", id: "/admin/settings" }
|
||||||
|
]}
|
||||||
|
brandName="ReservaFlow"
|
||||||
|
button={{ text: "Start Free Trial", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex min-h-screen items-center justify-center p-8">
|
||||||
|
<TextAnimation
|
||||||
|
title="Analytics Dashboards"
|
||||||
|
type="entrance-slide"
|
||||||
|
className="text-center text-4xl font-bold md:text-6xl"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user