Update src/app/about/page.tsx

This commit is contained in:
2026-05-09 08:33:42 +00:00
parent 0642c717c2
commit 4a7297e69b

View File

@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() { export default function AboutPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "Shop", id: "/shop" },
id: "/", { name: "About", id: "/about" },
}, { name: "Affiliate", id: "/affiliate" },
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Affiliate",
id: "/affiliate",
},
]} ]}
brandName="Noor Arte" brandName="Noor Arte"
button={{ text: "Contact", href: "/affiliate" }}
/> />
</div> </div>
@@ -58,21 +47,9 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ { id: "f1", title: "Are materials genuine?", content: "Yes, we use solid silver and authentic enamels." },
id: "f1", { id: "f2", title: "Where is it made?", content: "Every piece is crafted by masters." },
title: "Are materials genuine?", { id: "f3", title: "Care instructions?", content: "Polish softly and avoid chemicals." },
content: "Yes, we use solid silver and authentic enamels.",
},
{
id: "f2",
title: "Where is it made?",
content: "Every piece is crafted by masters.",
},
{
id: "f3",
title: "Care instructions?",
content: "Polish softly and avoid chemicals.",
},
]} ]}
title="Heritage & Questions" title="Heritage & Questions"
faqsAnimation="slide-up" faqsAnimation="slide-up"
@@ -83,38 +60,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ { items: [{ label: "Shop All", href: "/shop" }, { label: "About", href: "/about" }, { label: "Affiliate", href: "/affiliate" }] },
items: [ { items: [{ label: "Terms", href: "/terms" }, { label: "Privacy", href: "/privacy" }, { label: "Shipping", href: "/shipping" }] },
{
label: "Shop All",
href: "/shop",
},
{
label: "About",
href: "/about",
},
{
label: "Affiliate",
href: "/affiliate",
},
],
},
{
items: [
{
label: "Terms",
href: "/terms",
},
{
label: "Privacy",
href: "/privacy",
},
{
label: "Shipping",
href: "/shipping",
},
],
},
]} ]}
logoText="Noor Arte" logoText="Noor Arte"
/> />