diff --git a/src/app/feed/page.tsx b/src/app/feed/page.tsx new file mode 100644 index 0000000..f2d8b50 --- /dev/null +++ b/src/app/feed/page.tsx @@ -0,0 +1,24 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function FeedPage() { + return ( + + + +
+

Feed & Timeline

+

This is your main social feed. Stay connected with the latest updates from your network.

+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/messaging/page.tsx b/src/app/messaging/page.tsx new file mode 100644 index 0000000..c1dedaa --- /dev/null +++ b/src/app/messaging/page.tsx @@ -0,0 +1,24 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function MessagingPage() { + return ( + + + +
+

Messaging & Chat

+

Securely connect with others through encrypted, high-speed private messaging.

+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 9108b7f..7a69042 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,37 +14,29 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia export default function LandingPage() { return (