3 Commits

Author SHA1 Message Date
abeebaf47a Update src/app/page.tsx 2026-03-03 20:04:22 +00:00
7788d98cc7 Update src/app/marketplace/page.tsx 2026-03-03 20:04:21 +00:00
9580b431d8 Update src/app/about/page.tsx 2026-03-03 20:04:18 +00:00
5 changed files with 19 additions and 21 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: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
];
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: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
];
const navButton = {
@@ -114,4 +114,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -36,9 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunitoSans.variable} antialiased`}
>
<body className={`${nunitoSans.variable} antialiased`}>
<Tag />
{children}
@@ -1412,4 +1410,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: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
];
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: "/marketplace" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Support", id: "faq" },
];
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: "/marketplace" },
{ text: "Explore Collection", href: "#products" },
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
@@ -243,4 +243,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}