Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 771cbd887a | |||
| fcfcd92eab | |||
| df6e4ba29f | |||
| f151c95436 | |||
| 69b261f02e | |||
| f06c6a85f2 | |||
| 1f6d1faefe | |||
| 84e1cf4648 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user