Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-02-07 02:07:57 +00:00
4 changed files with 1 additions and 75 deletions

View File

@@ -2,7 +2,6 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import NavbarMinimal from '@/components/sections/navbar/NavbarMinimal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { useBlogPosts } from "@/hooks/useBlogPosts"; import { useBlogPosts } from "@/hooks/useBlogPosts";
@@ -23,14 +22,6 @@ export default function BlogPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav">
<NavbarMinimal
logo="Waitlist"
links={[]}
navItems={[{"name":"Home","id":"/"}]}
/>
</div>
{isLoading ? ( {isLoading ? (
<div className="w-content-width mx-auto py-20 text-center"> <div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p> <p className="text-foreground">Loading posts...</p>

View File

@@ -1,7 +1,6 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarMinimal from '@/components/sections/navbar/NavbarMinimal';
import HeroSignup from '@/components/sections/hero/HeroSignup'; import HeroSignup from '@/components/sections/hero/HeroSignup';
import { Sparkles } from "lucide-react"; import { Sparkles } from "lucide-react";
@@ -19,13 +18,6 @@ export default function WaitlistPage() {
secondaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow"
headingFontWeight="medium" headingFontWeight="medium"
> >
<div id="nav" data-section="nav">
<NavbarMinimal
logo="Waitlist"
links={[]}
/>
</div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSignup <HeroSignup
title="Be First in Line for Something Special" title="Be First in Line for Something Special"

View File

@@ -4,7 +4,6 @@ import { use, useCallback } from "react";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarMinimal from '@/components/sections/navbar/NavbarMinimal';
import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard"; import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
import ProductCart from "@/components/ecommerce/cart/ProductCart"; import ProductCart from "@/components/ecommerce/cart/ProductCart";
import { useProductDetail } from "@/hooks/useProductDetail"; import { useProductDetail } from "@/hooks/useProductDetail";
@@ -80,17 +79,6 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarMinimal
logo="Waitlist"
links={[]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
<p className="text-foreground">Loading product...</p> <p className="text-foreground">Loading product...</p>
</main> </main>
@@ -114,17 +102,6 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarMinimal
logo="Waitlist"
links={[]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
<div className="text-center"> <div className="text-center">
<p className="text-foreground mb-4">Product not found</p> <p className="text-foreground mb-4">Product not found</p>
@@ -155,17 +132,6 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarMinimal
logo="Waitlist"
links={[]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="product-detail-card" data-section="product-detail-card"> <div id="product-detail-card" data-section="product-detail-card">
<ProductDetailCard <ProductDetailCard
layout="page" layout="page"

View File

@@ -2,7 +2,6 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarMinimal from '@/components/sections/navbar/NavbarMinimal';
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import { useProductCatalog } from "@/hooks/useProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog";
import { useState } from "react"; import { useState } from "react";
@@ -55,17 +54,6 @@ export default function ShopPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarMinimal
logo="Waitlist"
links={[]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
<p className="text-foreground">Loading products...</p> <p className="text-foreground">Loading products...</p>
</main> </main>
@@ -88,17 +76,6 @@ export default function ShopPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarMinimal
logo="Waitlist"
links={[]}
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="product-catalog" data-section="product-catalog"> <div id="product-catalog" data-section="product-catalog">
<ProductCatalog <ProductCatalog
layout="page" layout="page"