Update src/app/about/page.tsx

This commit is contained in:
2026-04-17 09:27:52 +00:00
parent 5209c8f08c
commit 679469a69c

View File

@@ -27,10 +27,10 @@ export default function AboutPage() {
{ name: "Trang chủ", id: "/" },
{ name: "Về chúng mình", id: "/about" },
{ name: "Sản phẩm", id: "/products" },
{ name: "Dịch vụ", id: "/#services" },
{ name: "Bảng giá", id: "/#pricing" },
{ name: "Đội ngũ", id: "/#team" },
{ name: "Liên hệ", id: "/#contact" },
{ name: "Dịch vụ", id: "/services" },
{ name: "Bảng giá", id: "/pricing" },
{ name: "Đội ngũ", id: "/team" },
{ name: "Liên hệ", id: "/contact" },
]}
brandName="Sumint Beauty"
/>
@@ -51,12 +51,12 @@ export default function AboutPage() {
imageSrc="http://img.b2bpic.net/free-photo/view-light-lamp-with-futuristic-design_23-2151037572.jpg"
logoText="SUMINT"
columns={[
{ title: "Dịch vụ", items: [{ label: "Nails", href: "/#services" }, { label: "Lashes", href: "/#services" }, { label: "Tattoo", href: "/#services" }] },
{ title: "Liên kết", items: [{ label: "Trang chủ", href: "/" }, { label: "Sản phẩm", href: "/products" }, { label: "Bảng giá", href: "/#pricing" }, { label: "Liên hệ", href: "/#contact" }] },
{ title: "Dịch vụ", items: [{ label: "Nails", href: "/services" }, { label: "Lashes", href: "/services" }, { label: "Tattoo", href: "/services" }] },
{ title: "Liên kết", items: [{ label: "Trang chủ", href: "/" }, { label: "Sản phẩm", href: "/products" }, { label: "Bảng giá", href: "/pricing" }, { label: "Liên hệ", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}