Merge version_4 into main #6
@@ -1,8 +1,8 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { NavbarStyleApple } from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import { FooterBase } from "@/components/sections/footer/FooterBase";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import { useState } from "react";
|
||||
|
||||
export default function NotificationsPage() {
|
||||
@@ -12,18 +12,31 @@ export default function NotificationsPage() {
|
||||
]);
|
||||
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/#products" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Admin", id: "/admin/dashboard" },
|
||||
{ name: "Notifications", id: "/notifications" },
|
||||
]}
|
||||
brandName="RoseSouk"
|
||||
/>
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/#products" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Admin", id: "/admin/dashboard" },
|
||||
{ name: "Notifications", id: "/notifications" },
|
||||
]}
|
||||
brandName="RoseSouk"
|
||||
/>
|
||||
</div>
|
||||
<main className="container mx-auto py-20 min-h-screen">
|
||||
<h1 className="text-4xl font-bold mb-8">Status Change Alerts</h1>
|
||||
<div className="space-y-4">
|
||||
|
||||
Reference in New Issue
Block a user