From 37ed9edec2ea50531456a8abb8a73fdde00f1738 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 09:21:28 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 153 +++++++++++++---------------------------------- 1 file changed, 40 insertions(+), 113 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 96fac7c..a512615 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,14 +31,10 @@ export default function LandingPage() { @@ -221,20 +158,10 @@ export default function LandingPage() { logoText="ConnectHub" columns={[ { - title: "Company", items: [ - { - label: "About", href: "#"}, - { - label: "Careers", href: "#"}, - ], + title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }], }, { - title: "Resources", items: [ - { - label: "Help", href: "#"}, - { - label: "Privacy", href: "#"}, - ], + title: "Resources", items: [{ label: "Help", href: "#" }, { label: "Privacy", href: "#" }], }, ]} /> @@ -242,4 +169,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 84150157b27b3a0e0afda29265b2ff014bec0aa2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 09:21:28 +0000 Subject: [PATCH 2/2] Add src/app/profile/page.tsx --- src/app/profile/page.tsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/app/profile/page.tsx diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx new file mode 100644 index 0000000..cfbcc93 --- /dev/null +++ b/src/app/profile/page.tsx @@ -0,0 +1,36 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ReactLenis from "lenis/react"; + +export default function ProfilePage() { + return ( + + + +
+
+ Profile +
+

Alex Rivera

+

@alextech | Digital Creator

+ +
+
+
+ {[1, 2, 3, 4, 5, 6].map(i => ( +
+ ))} +
+
+
+
+ ); +} \ No newline at end of file -- 2.49.1