Merge version_3 into main #2

Merged
bender merged 7 commits from version_3 into main 2026-02-16 10:45:00 +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: "Contact", id: "contact" },
{ name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" }
{ name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]}
button={{ text: "Shop Now", href: "/shop" }}
/>

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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."
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 id="footer" data-section="footer">

View File

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

View File

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

View File

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

View File

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

View File

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