diff --git a/.env.local b/.env.local index 5177f68..dc8fd4e 100644 --- a/.env.local +++ b/.env.local @@ -2,7 +2,7 @@ NEXT_PUBLIC_API_BASE_URL=http://localhost:8080 # Middleware to limited site to only root page -NEXT_PUBLIC_LAUNCH_ONLY_ROOT=true +NEXT_PUBLIC_LAUNCH_ONLY_ROOT=false # Brevo API key for beta sign up collection BREVO_API_KEY=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 diff --git a/.env.production b/.env.production index 86ef4d5..fe409f3 100644 --- a/.env.production +++ b/.env.production @@ -2,7 +2,7 @@ NEXT_PUBLIC_API_BASE_URL=http://localhost:8080 # Middleware to limited site to only root page -NEXT_PUBLIC_LAUNCH_ONLY_ROOT=true +NEXT_PUBLIC_LAUNCH_ONLY_ROOT=false # Brevo API key for beta sign up collection BREVO_API_KEY=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 diff --git a/app/admin/layout.tsx b/app/admin/layout.tsx index b71f547..922facf 100644 --- a/app/admin/layout.tsx +++ b/app/admin/layout.tsx @@ -8,9 +8,10 @@ import { Boxes, Store, Users, - Settings, + Settings, LucideMail, } from "lucide-react"; + const navItems = [ { label: "Dashboard", @@ -47,6 +48,11 @@ const navItems = [ href: "/admin/settings", icon: , }, + { + label: "Email Request", + href: "/admin/email", + icon: , + }, ]; // ADMIN CHECK FOR LOGIN