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: "Live Shows", id: "/#live-shows" },
|
||||||
{ name: "Bundles", id: "/#bundles" },
|
{ name: "Bundles", id: "/#bundles" },
|
||||||
{ name: "Reviews", id: "/#reviews" },
|
{ name: "Reviews", id: "/#reviews" },
|
||||||
{ name: "Contact", id: "/#contact-support" }
|
{ name: "Contact", id: "/#contact-support" },
|
||||||
|
{ name: "Privacy", id: "/privacy" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -42,7 +43,6 @@ export default function BlogPage() {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ export default function LandingPage() {
|
|||||||
{ name: "Live Shows", id: "live-shows" },
|
{ name: "Live Shows", id: "live-shows" },
|
||||||
{ name: "Bundles", id: "bundles" },
|
{ name: "Bundles", id: "bundles" },
|
||||||
{ name: "Reviews", id: "reviews" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
{ name: "Contact", id: "contact-support" }
|
{ name: "Contact", id: "contact-support" },
|
||||||
|
{ name: "Privacy", id: "/privacy" }
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -42,7 +43,6 @@ export default function LandingPage() {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { LegalSection } from "@/components/legal/LegalSection";
|
import LegalSection from "@/components/legal/LegalSection";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
@@ -13,7 +13,8 @@ export default function PrivacyPolicyPage() {
|
|||||||
{ name: "Live Shows", id: "/#live-shows" },
|
{ name: "Live Shows", id: "/#live-shows" },
|
||||||
{ name: "Bundles", id: "/#bundles" },
|
{ name: "Bundles", id: "/#bundles" },
|
||||||
{ name: "Reviews", id: "/#reviews" },
|
{ 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";
|
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"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="privacy-policy" data-section="privacy-policy">
|
<div id="privacy-policy" data-section="privacy-policy">
|
||||||
|
|||||||
@@ -80,7 +80,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ name: "Live Shows", id: "/#live-shows" },
|
{ name: "Live Shows", id: "/#live-shows" },
|
||||||
{ name: "Bundles", id: "/#bundles" },
|
{ name: "Bundles", id: "/#bundles" },
|
||||||
{ name: "Reviews", id: "/#reviews" },
|
{ name: "Reviews", id: "/#reviews" },
|
||||||
{ name: "Contact", id: "/#contact-support" }
|
{ name: "Contact", id: "/#contact-support" },
|
||||||
|
{ name: "Privacy", id: "/privacy" }
|
||||||
];
|
];
|
||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
@@ -98,7 +99,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Glow Theory"
|
brandName="Glow Theory"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
@@ -106,7 +107,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="loading-section" data-section="loading-section">
|
<div id="loading-section" data-section="loading-section">
|
||||||
@@ -144,7 +144,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Glow Theory"
|
brandName="Glow Theory"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
@@ -152,7 +152,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="not-found-section" data-section="not-found-section">
|
<div id="not-found-section" data-section="not-found-section">
|
||||||
@@ -197,7 +196,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Glow Theory"
|
brandName="Glow Theory"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
@@ -205,7 +204,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="product-detail-card" data-section="product-detail-card">
|
<div id="product-detail-card" data-section="product-detail-card">
|
||||||
|
|||||||
@@ -47,7 +47,8 @@ function ShopPageContent() {
|
|||||||
{ name: "Live Shows", id: "/#live-shows" },
|
{ name: "Live Shows", id: "/#live-shows" },
|
||||||
{ name: "Bundles", id: "/#bundles" },
|
{ name: "Bundles", id: "/#bundles" },
|
||||||
{ name: "Reviews", id: "/#reviews" },
|
{ name: "Reviews", id: "/#reviews" },
|
||||||
{ name: "Contact", id: "/#contact-support" }
|
{ name: "Contact", id: "/#contact-support" },
|
||||||
|
{ name: "Privacy", id: "/privacy" }
|
||||||
];
|
];
|
||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
@@ -65,7 +66,7 @@ function ShopPageContent() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Glow Theory"
|
brandName="Glow Theory"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
@@ -73,7 +74,6 @@ function ShopPageContent() {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="loading-section" data-section="loading-section">
|
<div id="loading-section" data-section="loading-section">
|
||||||
@@ -110,7 +110,7 @@ function ShopPageContent() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Glow Theory"
|
brandName="Glow Theory"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
@@ -118,7 +118,6 @@ function ShopPageContent() {
|
|||||||
className="py-4 px-6 md:px-8"
|
className="py-4 px-6 md:px-8"
|
||||||
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
buttonClassName="shadow-md !bg-[--primary-cta] !text-[--primary-cta-text]"
|
||||||
buttonTextClassName="font-medium"
|
buttonTextClassName="font-medium"
|
||||||
menuButtonClassName="!text-[--accent]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="product-catalog" data-section="product-catalog">
|
<div id="product-catalog" data-section="product-catalog">
|
||||||
|
|||||||
Reference in New Issue
Block a user