From 7bb1b207d10d5041c4bc592fa48beaef76910ea9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 14:18:17 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 190 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..f311350 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,190 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Heart, BookOpen, Cross, Zap, Target, MessageCircle } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 7366e66474dcdbcf23e47021ac68dd8b87afcda3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 14:18:17 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7f8e8be..f6fc7f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { brandName="Sebas" navItems={[ { name: "Inicio", id: "hero" }, - { name: "Sobre mí", id: "about" }, + { name: "Sobre mí", id: "/about" }, { name: "Crecimiento", id: "growth" }, { name: "Playlists", id: "playlists" }, { name: "Portafolio", id: "portfolio" }, @@ -47,7 +47,7 @@ export default function LandingPage() { logoText="Creciendo en el proceso, guiado por Dios" description="Ingeniero de sonido | Multimedia | Fe | Desde Colombia hacia España" buttons={[ - { text: "Ver mi historia", href: "#about" }, + { text: "Ver mi historia", href: "/about" }, { text: "Escuchar playlists", href: "#playlists" } ]} slides={[ @@ -73,7 +73,7 @@ export default function LandingPage() { title="Desde Colombia hasta España: Un viaje de fe y propósito" useInvertedBackground={false} buttons={[ - { text: "Conectar conmigo", href: "#contact" } + { text: "Leer historia completa", href: "/about" } ]} /> @@ -242,8 +242,8 @@ export default function LandingPage() { columns={[ { title: "Navegación", items: [ - { label: "Inicio", href: "#hero" }, - { label: "Sobre mí", href: "#about" }, + { label: "Inicio", href: "/" }, + { label: "Sobre mí", href: "/about" }, { label: "Crecimiento", href: "#growth" }, { label: "Playlists", href: "#playlists" } ] @@ -271,4 +271,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1