Add src/app/feed/page.tsx

This commit is contained in:
2026-05-15 11:52:34 +00:00
parent 81ff419ff8
commit 59fc23c542

90
src/app/feed/page.tsx Normal file
View File

@@ -0,0 +1,90 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function FeedPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="noise"
cardStyle="layered-gradient"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Feed", id: "feed" },
{ name: "Features", id: "features" },
]}
brandName="Sohix"
/>
</div>
<div id="posts" data-section="posts">
<FeatureCardThree
title="Latest Posts"
description="See what the community is talking about right now."
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
features={[
{ title: "Life Update", description: "Just moved to a new city!", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-city_23-2148812682.jpg" },
{ title: "Travel Diary", description: "Hiking in the mountains today.", imageSrc: "http://img.b2bpic.net/free-photo/mountain-landscape_23-2148812682.jpg" },
{ title: "Foodie Life", description: "Best pizza in town found.", imageSrc: "http://img.b2bpic.net/free-photo/pizza_23-2148812682.jpg" }
]}
/>
</div>
<div id="memes" data-section="memes">
<ProductCardOne
title="Trending Memes"
description="The funniest content curated just for you."
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
products={[
{ id: "m1", name: "Weekend Vibes", price: "", imageSrc: "http://img.b2bpic.net/free-photo/laughing-cat_23-2148812682.jpg" },
{ id: "m2", name: "Monday Blues", price: "", imageSrc: "http://img.b2bpic.net/free-photo/sleepy-dog_23-2148812682.jpg" },
{ id: "m3", name: "Work Mode", price: "", imageSrc: "http://img.b2bpic.net/free-photo/funny-worker_23-2148812682.jpg" },
{ id: "m4", name: "Coffee Break", price: "", imageSrc: "http://img.b2bpic.net/free-photo/coffee-spill_23-2148812682.jpg" }
]}
/>
</div>
<div id="reels" data-section="reels">
<FeatureCardThree
title="Community Reels"
description="Short, snappy, and incredibly fun."
animationType="slide-up"
textboxLayout="default"
gridVariant="asymmetric-60-wide-40-narrow"
features={[
{ title: "Comedy Skit", description: "Why do we do this?", imageSrc: "http://img.b2bpic.net/free-photo/skit_23-2148812682.jpg" },
{ title: "Dance Challenge", description: "Learning the new moves!", imageSrc: "http://img.b2bpic.net/free-photo/dance_23-2148812682.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sohix"
columns={[{ title: "Platform", items: [{ label: "Home", href: "/" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}