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 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