Add src/app/feed/page.tsx
This commit is contained in:
24
src/app/feed/page.tsx
Normal file
24
src/app/feed/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Feed", id: "/feed" }, { name: "Profile", id: "/profile" }, { name: "Messages", id: "/messaging" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Connect"
|
||||
/>
|
||||
<main className="container mx-auto py-24 min-h-screen">
|
||||
<h1 className="text-4xl font-bold mb-8">Feed & Timeline</h1>
|
||||
<p className="text-lg">This is your main social feed. Stay connected with the latest updates from your network.</p>
|
||||
</main>
|
||||
<FooterLogoReveal logoText="Connect" leftLink={{ text: "Privacy", href: "#" }} rightLink={{ text: "Terms", href: "#" }} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user