5 Commits

Author SHA1 Message Date
2b2a65b7cd Update src/app/shop/page.tsx 2026-02-21 20:10:22 +00:00
95eac99262 Update src/app/shop/[id]/page.tsx 2026-02-21 20:10:21 +00:00
293b8a53e4 Update src/app/privacy/page.tsx 2026-02-21 20:10:21 +00:00
6b25e81060 Update src/app/page.tsx 2026-02-21 20:10:20 +00:00
a42727f9ae Update src/app/blog/page.tsx 2026-02-21 20:10:19 +00:00
5 changed files with 16 additions and 19 deletions

View File

@@ -17,7 +17,8 @@ export default function BlogPage() {
{ name: "Live Shows", id: "/#live-shows" },
{ name: "Bundles", id: "/#bundles" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact-support" }
{ name: "Contact", id: "/#contact-support" },
{ name: "Privacy", id: "/privacy" }
];
return (
@@ -42,7 +43,6 @@ export default function BlogPage() {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>

View File

@@ -18,7 +18,8 @@ export default function LandingPage() {
{ name: "Live Shows", id: "live-shows" },
{ name: "Bundles", id: "bundles" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact-support" }
{ name: "Contact", id: "contact-support" },
{ name: "Privacy", id: "/privacy" }
];
return (
@@ -42,7 +43,6 @@ export default function LandingPage() {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>

View File

@@ -1,6 +1,6 @@
"use client";
import { LegalSection } from "@/components/legal/LegalSection";
import LegalSection from "@/components/legal/LegalSection";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
@@ -13,7 +13,8 @@ export default function PrivacyPolicyPage() {
{ name: "Live Shows", id: "/#live-shows" },
{ name: "Bundles", id: "/#bundles" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact-support" }
{ name: "Contact", id: "/#contact-support" },
{ name: "Privacy", id: "/privacy" }
];
const WHATNOT_LINK = "https://www.whatnot.com/live/glowtheory";
@@ -39,7 +40,6 @@ export default function PrivacyPolicyPage() {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>
<div id="privacy-policy" data-section="privacy-policy">

View File

@@ -80,7 +80,8 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Live Shows", id: "/#live-shows" },
{ name: "Bundles", id: "/#bundles" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact-support" }
{ name: "Contact", id: "/#contact-support" },
{ name: "Privacy", id: "/privacy" }
];
if (isLoading) {
@@ -98,7 +99,7 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Glow Theory"
navItems={navItems}
@@ -106,7 +107,6 @@ function ProductPageContent({ params }: ProductPageProps) {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>
<div id="loading-section" data-section="loading-section">
@@ -144,7 +144,7 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Glow Theory"
navItems={navItems}
@@ -152,7 +152,6 @@ function ProductPageContent({ params }: ProductPageProps) {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>
<div id="not-found-section" data-section="not-found-section">
@@ -197,7 +196,7 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Glow Theory"
navItems={navItems}
@@ -205,7 +204,6 @@ function ProductPageContent({ params }: ProductPageProps) {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>
<div id="product-detail-card" data-section="product-detail-card">

View File

@@ -47,7 +47,8 @@ function ShopPageContent() {
{ name: "Live Shows", id: "/#live-shows" },
{ name: "Bundles", id: "/#bundles" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact-support" }
{ name: "Contact", id: "/#contact-support" },
{ name: "Privacy", id: "/privacy" }
];
if (isLoading) {
@@ -65,7 +66,7 @@ function ShopPageContent() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Glow Theory"
navItems={navItems}
@@ -73,7 +74,6 @@ function ShopPageContent() {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>
<div id="loading-section" data-section="loading-section">
@@ -110,7 +110,7 @@ function ShopPageContent() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Glow Theory"
navItems={navItems}
@@ -118,7 +118,6 @@ function ShopPageContent() {
className="py-4 px-6 md:px-8"
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
buttonTextClassName="font-medium"
menuButtonClassName="!text-[--accent]"
/>
</div>
<div id="product-catalog" data-section="product-catalog">