8 Commits

Author SHA1 Message Date
771cbd887a Update src/app/page.tsx 2026-03-03 19:52:55 +00:00
fcfcd92eab Update src/app/marketplace/page.tsx 2026-03-03 19:52:53 +00:00
df6e4ba29f Update src/app/layout.tsx 2026-03-03 19:52:52 +00:00
f151c95436 Update src/app/contact/page.tsx 2026-03-03 19:52:50 +00:00
69b261f02e Update src/app/about/page.tsx 2026-03-03 19:52:48 +00:00
f06c6a85f2 Merge version_1 into main
Merge version_1 into main
2026-03-03 19:44:01 +00:00
1f6d1faefe Merge version_1 into main
Merge version_1 into main
2026-03-03 19:39:56 +00:00
84e1cf4648 Merge version_1 into main
Merge version_1 into main
2026-03-03 19:34:16 +00:00
5 changed files with 21 additions and 19 deletions

View File

@@ -10,9 +10,9 @@ import { ShoppingCart, Star, Users, Award, CheckCircle, Heart, Globe, Zap } from
export default function AboutPage() {
const navItems = [
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
{ name: "Shop", id: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
];
const navButton = {
@@ -122,4 +122,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -8,9 +8,9 @@ import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function ContactPage() {
const navItems = [
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
{ name: "Shop", id: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
];
const navButton = {
@@ -114,4 +114,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -36,7 +36,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body
className={`${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
@@ -1410,4 +1412,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -8,9 +8,9 @@ import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function MarketplacePage() {
const navItems = [
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
{ name: "Shop", id: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
];
const navButton = {
@@ -133,4 +133,4 @@ export default function MarketplacePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -14,9 +14,9 @@ import { ShoppingCart, Star, Users, Award, CheckCircle } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
{ name: "Shop", id: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
];
const navButton = {
@@ -52,7 +52,7 @@ export default function HomePage() {
description="Discover premium hand-woven textiles and elegant clothing crafted with timeless sophistication. Experience luxury in every stitch."
buttons={[
{ text: "Shop Now", href: "/marketplace" },
{ text: "Explore Collection", href: "#products" },
{ text: "Explore Collection", href: "/marketplace" },
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
@@ -243,4 +243,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}