Update src/app/about/page.tsx

This commit is contained in:
2026-03-03 19:35:22 +00:00
parent 2992f3b58b
commit 7207beb696

View File

@@ -18,8 +18,7 @@ export default function AboutPage() {
];
const navButton = {
text: "Связаться с нами", href: "/contact"
};
text: "Связаться с нами", href: "/contact"};
return (
<ThemeProvider
@@ -35,14 +34,18 @@ export default function AboutPage() {
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<div className="flex items-center gap-2">
<Cloud size={20} />
<NavbarLayoutFloatingInline
brandName="Mond Design"
navItems={navItems}
button={navButton}
/>
</div>
<NavbarLayoutFloatingInline
brandName="Mond Design"
navItems={navItems}
button={navButton}
animateOnLoad={true}
eyebrowContent={
<div className="flex items-center gap-2">
<Cloud size={16} />
<span className="text-sm">Mond Design</span>
</div>
}
/>
</div>
<div id="about" data-section="about" className="py-20 md:py-28">
@@ -128,4 +131,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}