Update src/app/sobre/page.tsx

This commit is contained in:
2026-03-29 14:41:16 +00:00
parent 24994e9165
commit 9cd23a8c74

View File

@@ -3,101 +3,37 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterMedia from '@/components/sections/footer/FooterMedia';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
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">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Gallery",
id: "/galeria",
},
{
name: "Explore",
id: "/explorar",
},
{
name: "About",
id: "/sobre",
},
]}
brandName="Aura"
/>
</div>
<div id="about" data-section="about">
<TextAbout
useInvertedBackground={false}
title="Behind the Lens"
buttons={[
{
text: "Contact Support",
href: "/contato",
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Transparency & Privacy"
sections={[
{
heading: "Data Privacy",
content: {
type: "paragraph",
text: "We handle your images with the utmost respect for intellectual property.",
},
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcjL3H1ybCovkOfMqiUW8DmX8M/abstract-dark-textured-background-minima-1774795232830-733abf77.png?_wi=3"
columns={[
{
title: "Archives",
items: [
{
label: "Gallery",
href: "/galeria",
},
{
label: "Explore",
href: "/explorar",
},
],
},
{
title: "Studio",
items: [
{
label: "About",
href: "/sobre",
},
{
label: "Contact",
href: "/contato",
},
],
},
]}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Gallery", id: "/galeria" }]}
brandName="Aura"
button={{ text: "Get Started", href: "/contato" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcjL3H1ybCovkOfMqiUW8DmX8M/abstract-dark-textured-background-minima-1774795232830-733abf77.png"
columns={[{ title: "Archives", items: [{ label: "Gallery", href: "/galeria" }] }, { title: "Studio", items: [{ label: "About", href: "/sobre" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}