Add src/app/admin/product-reviews/page.tsx

This commit is contained in:
2026-06-02 18:18:02 +00:00
parent 4d24f99190
commit 581fdaa2fd

View File

@@ -0,0 +1,96 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function AdminProductReviewsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmall"
background="grid"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{name: "Home", id: "/"},
{name: "Categories", id: "/#categories"},
{name: "Products", id: "/#products"},
{name: "Reviews", id: "/#reviews"},
{name: "About", id: "/#about"},
{name: "Contact", id: "/#contact"},
{name: "Prod. Reviews", id: "/admin/product-reviews"},
{name: "Discounts", id: "/admin/discounts-coupons"},
{name: "WhatsApp Inq.", id: "/admin/whatsapp-inquiries"},
{name: "Design Inq.", id: "/admin/design-inquiries"},
{name: "Invoice/Billing", id: "/admin/invoice-billing"},
{name: "Shipping", id: "/admin/shipping-management"},
{name: "User Roles", id: "/admin/user-roles"}
]}
brandName="Neha Jewelrys"
/>
</div>
<div className="flex flex-col items-center justify-center min-h-[calc(100vh-100px)] py-12 px-4">
<h1 className="text-4xl font-bold mb-4">Product Reviews Management</h1>
<p className="text-lg text-foreground/70">Admin interface for managing product reviews.</p>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Shop", items: [
{
label: "Earrings", href: "#"},
{
label: "Necklaces", href: "#"},
{
label: "Bangles", href: "#"},
{
label: "Bridal", href: "#"},
{
label: "Custom Orders", href: "#"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/#about"},
{
label: "Customer Reviews", href: "/#reviews"},
{
label: "Contact Us", href: "/#contact"},
{
label: "WhatsApp", href: "https://wa.me/YOURPHONENUMBER"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
{
label: "Refund Policy", href: "#"},
],
},
]}
logoText="Neha Jewelrys"
copyrightText="© 2024 Neha Jewelrys. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}