Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b2a65b7cd | |||
| 95eac99262 | |||
| 293b8a53e4 | |||
| 6b25e81060 | |||
| a42727f9ae |
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user