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 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() {
- +
); 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 +} 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