Update src/app/about/page.tsx
This commit is contained in:
@@ -7,112 +7,34 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Monte-Bellaria"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-section" data-section="about-section">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Where Tradition Meets Intelligence"
|
||||
description="Our mission is simple: use AI to perfect the delicate balance of the California climate. By monitoring soil, moisture, and micro-climates, we craft products of unrivaled quality."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=3"
|
||||
imageAlt="Smart farming tech"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Growth Stats"
|
||||
description="Our progress metrics."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "1200",
|
||||
title: "Trees Planted",
|
||||
description: "Our thriving grove.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "5+",
|
||||
title: "Years Innovation",
|
||||
description: "Ongoing research.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png?_wi=5",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Monte-Bellaria",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "/shop",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Monte-Bellaria di California."
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Shop", id: "/shop"}, {name: "Contact", id: "/contact"}]} brandName="Monte-Bellaria" />
|
||||
</div>
|
||||
<div id="about-section" data-section="about-section">
|
||||
<MediaAbout useInvertedBackground={false} title="Where Tradition Meets Intelligence" description="Our mission is simple: use AI to perfect the delicate balance of the California climate. By monitoring soil, moisture, and micro-climates, we craft products of unrivaled quality." imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png" imageAlt="Smart farming tech" />
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardEleven animationType="slide-up" textboxLayout="default" useInvertedBackground={false} title="Growth Stats" description="Our progress metrics." metrics={[{id: "m1", value: "1200", title: "Trees Planted", description: "Our thriving grove.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png"}, {id: "m2", value: "5+", title: "Years Innovation", description: "Ongoing research.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdSIYqbrOpbQ60hUuzHn7VqiKr/close-up-of-a-person-tending-to-olive-tr-1774817418912-040a624e.png"}]} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal columns={[{title: "Monte-Bellaria", items: [{label: "About Us", href: "/about"}, {label: "Shop", href: "/shop"}, {label: "Contact", href: "/contact"}]}, {title: "Legal", items: [{label: "Privacy Policy", href: "#"}, {label: "Terms of Service", href: "#"}]}]} copyrightText="© 2024 Monte-Bellaria di California." />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user