Update src/app/about/page.tsx

This commit is contained in:
2026-03-05 12:29:23 +00:00
parent a9a2adf9c4
commit 5769aebdcc

View File

@@ -34,8 +34,7 @@ export default function AboutPage() {
{ name: "Blog", id: "/blog" }
]}
button={{
text: "Order on WhatsApp",
href: "https://wa.me/919876543210"
text: "Cart", href: "/cart"
}}
animateOnLoad={true}
/>
@@ -81,32 +80,16 @@ export default function AboutPage() {
useInvertedBackground={false}
metrics={[
{
id: "1",
value: "5000",
title: "Happy Customers",
description: "Across India trusting our products",
icon: Users
id: "1", value: "5000", title: "Happy Customers", description: "Across India trusting our products", icon: Users
},
{
id: "2",
value: "25",
title: "Product Range",
description: "Handmade natural cosmetics",
icon: Package
id: "2", value: "25", title: "Product Range", description: "Handmade natural cosmetics", icon: Package
},
{
id: "3",
value: "100",
title: "Pure Natural",
description: "Ingredients without chemicals",
icon: Leaf
id: "3", value: "100", title: "Pure Natural", description: "Ingredients without chemicals", icon: Leaf
},
{
id: "4",
value: "4.9",
title: "Average Rating",
description: "Out of 5 stars from verified buyers",
icon: Star
id: "4", value: "4.9", title: "Average Rating", description: "Out of 5 stars from verified buyers", icon: Star
}
]}
/>
@@ -117,8 +100,7 @@ export default function AboutPage() {
<FooterSimple
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "All Products", href: "/shop" },
{ label: "Lip Care", href: "/shop?category=lip-care" },
{ label: "Face Care", href: "/shop?category=face-care" },
@@ -127,8 +109,7 @@ export default function AboutPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Blog", href: "/blog" },
@@ -136,8 +117,7 @@ export default function AboutPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Track Order", href: "#" },
{ label: "Returns", href: "#" },
{ label: "Shipping Info", href: "#" },
@@ -145,8 +125,7 @@ export default function AboutPage() {
]
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "Refund Policy", href: "#" },
@@ -160,4 +139,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}