Update src/app/about/page.tsx

This commit is contained in:
2026-01-15 10:15:45 +00:00
parent 213b31688f
commit 8d05dadc0b

View File

@@ -5,7 +5,7 @@ import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureProcessSteps from '@/components/sections/feature/FeatureProcessSteps'; import FeatureProcessSteps from '@/components/sections/feature/FeatureProcessSteps';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ThemeProvider } from '@/components/ui/ThemeProvider'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -13,22 +13,27 @@ export default function AboutPage() {
defaultButtonVariant="hover-magnetic" defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="pill" borderRadius="pill"
contentWidth="compact" contentWidth="medium"
sizing="largeSizeMediumTitles" sizing="medium"
background="aurora" background="aurora"
cardStyle="gradient-mesh" cardStyle="glass-elevated"
primaryButtonStyle="double-inset" primaryButtonStyle="gradient"
secondaryButtonStyle="layered" secondaryButtonStyle="glass"
showBlurBottom={false} showBlurBottom={false}
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <NavbarStyleMinimal
brandName="Bloom & Petals" brandName="Bloom & Petals"
button={{ button={{
text: "Shop Now", text: "Shop Now", href: "/products"
href: "/products"
}} }}
/> />
<div style={{ position: 'absolute', top: '20px', right: '200px', zIndex: 1000 }}>
<Link href="/" style={{ marginRight: '15px', color: 'var(--foreground)' }}>Home</Link>
<Link href="/about" style={{ marginRight: '15px', color: 'var(--foreground)' }}>About</Link>
<Link href="/products" style={{ marginRight: '15px', color: 'var(--foreground)' }}>Products</Link>
<Link href="/contact" style={{ color: 'var(--foreground)' }}>Contact</Link>
</div>
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
@@ -53,22 +58,13 @@ export default function AboutPage() {
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
steps={[ steps={[
{ {
number: "01", number: "01", title: "Choose Your Flowers", description: "Browse our curated collection of fresh, premium arrangements or customize your own.", tag: "Selection"
title: "Choose Your Flowers",
description: "Browse our curated collection of fresh, premium arrangements or customize your own.",
tag: "Selection"
}, },
{ {
number: "02", number: "02", title: "Add Personal Touch", description: "Include a heartfelt message, select delivery date, and add special add-ons like chocolates or candles.", tag: "Customization"
title: "Add Personal Touch",
description: "Include a heartfelt message, select delivery date, and add special add-ons like chocolates or candles.",
tag: "Customization"
}, },
{ {
number: "03", number: "03", title: "Fast Delivery", description: "We'll arrange, package, and deliver your flowers with care straight to the recipient's door.", tag: "Delivery"
title: "Fast Delivery",
description: "We'll arrange, package, and deliver your flowers with care straight to the recipient's door.",
tag: "Delivery"
} }
]} ]}
/> />