8 Commits

Author SHA1 Message Date
3119fd80ce Update src/app/terms/page.tsx 2026-02-16 10:44:56 +00:00
3e642972d6 Update src/app/support/page.tsx 2026-02-16 10:44:55 +00:00
c57751a984 Update src/app/shop/page.tsx 2026-02-16 10:44:55 +00:00
3440b2bace Update src/app/shop/[id]/page.tsx 2026-02-16 10:44:54 +00:00
00f496b9c2 Update src/app/privacy/page.tsx 2026-02-16 10:44:53 +00:00
5023e8dec0 Update src/app/page.tsx 2026-02-16 10:44:52 +00:00
6b437bda5c Update src/app/blog/page.tsx 2026-02-16 10:44:52 +00:00
d5aeb5aad1 Merge version_2 into main
Merge version_2 into main
2026-02-16 10:40:27 +00:00
7 changed files with 28 additions and 12 deletions

View File

@@ -35,7 +35,8 @@ export default function BlogPage() {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" }, { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" } { name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ text: "Shop Now", href: "/shop" }} button={{ text: "Shop Now", href: "/shop" }}
/> />

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -205,6 +205,14 @@ export default function LandingPage() {
termsText="We respect your privacy. Unsubscribe at any time. See our privacy policy and terms of service." termsText="We respect your privacy. Unsubscribe at any time. See our privacy policy and terms of service."
tagAnimation="slide-up" tagAnimation="slide-up"
/> />
<div className="mx-auto max-w-2xl px-4 py-12 text-center">
<p className="text-lg text-foreground/80">
Or reach out directly at{" "}
<a href="mailto:nikolay@blagmail.com" className="font-semibold text-primary-cta hover:underline">
nikolay@blagmail.com
</a>
</p>
</div>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -29,7 +29,8 @@ export default function PrivacyPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" } { name: "Support", id: "/support" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/shop" text: "Shop Now", href: "/shop"

View File

@@ -92,7 +92,8 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" }, { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" } { name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -141,7 +142,8 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" }, { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" } { name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -197,7 +199,8 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" }, { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" } { name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />

View File

@@ -42,7 +42,8 @@ export default function ShopPage() {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" }, { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" } { name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ text: "Cart", onClick: () => console.log("cart") }} button={{ text: "Cart", onClick: () => console.log("cart") }}
/> />
@@ -90,7 +91,8 @@ export default function ShopPage() {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" }, { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" } { name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]} ]}
button={{ text: "Cart", onClick: () => console.log("cart") }} button={{ text: "Cart", onClick: () => console.log("cart") }}
/> />

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -29,7 +29,8 @@ export default function TermsPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "/support" } { name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/shop" text: "Shop Now", href: "/shop"