From 5c4a4e4a7f889f7b5e656af552201aa90d399a6f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 11:42:12 +0000 Subject: [PATCH 1/5] Update src/app/feed/page.tsx --- src/app/feed/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/feed/page.tsx b/src/app/feed/page.tsx index 6407fe1..33bc72e 100644 --- a/src/app/feed/page.tsx +++ b/src/app/feed/page.tsx @@ -89,4 +89,4 @@ export default function FeedPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 5397f038a15792e4ad7eb8e8295e537b89c857ab Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 11:42:12 +0000 Subject: [PATCH 2/5] Update src/app/login/page.tsx --- src/app/login/page.tsx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 3e0b302..7e3b654 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -11,6 +11,11 @@ export default function LoginPage() { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); + const navLinks = [ + { name: "Home", id: "/" }, + { name: "Login", id: "/login" }, + ]; + return (
@@ -39,7 +44,12 @@ export default function LoginPage() {
- +
); -- 2.49.1 From 86f1f3a39f42722acc0ad8c883d32bcb2d8c6d8a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 11:42:13 +0000 Subject: [PATCH 3/5] Update src/app/notifications/page.tsx --- src/app/notifications/page.tsx | 69 +++++++++++++++++----------------- 1 file changed, 35 insertions(+), 34 deletions(-) diff --git a/src/app/notifications/page.tsx b/src/app/notifications/page.tsx index 1ac0bed..d3b6c5c 100644 --- a/src/app/notifications/page.tsx +++ b/src/app/notifications/page.tsx @@ -4,13 +4,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Bell, Heart, MessageCircle, UserPlus, Settings } from "lucide-react"; +import { Bell, Heart, MessageCircle, UserPlus } from "lucide-react"; export default function NotificationsPage() { const notifications = [ - { id: 1, type: 'like', text: 'Sarah liked your post', time: '2m ago', icon: Heart }, - { id: 2, type: 'comment', text: 'Mark commented on your photo', time: '1h ago', icon: MessageCircle }, - { id: 3, type: 'follow', text: 'David started following you', time: '3h ago', icon: UserPlus }, + { id: "1", type: "like", user: "Alex J.", content: "liked your photo", icon: Heart, time: "2m ago" }, + { id: "2", type: "comment", user: "Jamie R.", content: "commented on your post", icon: MessageCircle, time: "1h ago" }, + { id: "3", type: "follow", user: "Sam K.", content: "started following you", icon: UserPlus, time: "3h ago" }, + { id: "4", type: "like", user: "Jordan L.", content: "liked your comment", icon: Heart, time: "5h ago" }, ]; return ( @@ -27,46 +28,46 @@ export default function NotificationsPage() { headingFontWeight="bold" > - - -
-
-

Notifications

- -
+ +
+

+ Notifications +

{notifications.map((n) => ( -
-
- +
+
+
-
-

{n.text}

-

{n.time}

+
+

{n.user} {n.content}

+

{n.time}

))}
- + ); -} \ No newline at end of file +} -- 2.49.1 From 7cfe4a5412c180d8e9a1fd623a634304e06a76fd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 11:42:13 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 149 ++++++++++++++--------------------------------- 1 file changed, 45 insertions(+), 104 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 27f0e1e..2be6f7d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,14 +32,10 @@ export default function LandingPage() {
-
); -} +} \ No newline at end of file -- 2.49.1