From 6368c138ac77caa07b3422bbb83960caaa047a94 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:25:22 +0000 Subject: [PATCH] Update src/app/profile/page.tsx --- src/app/profile/page.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx index 5aef234..ce477a3 100644 --- a/src/app/profile/page.tsx +++ b/src/app/profile/page.tsx @@ -9,6 +9,14 @@ import { Lock, Shield, Zap, Users } from "lucide-react"; import Link from "next/link"; export default function ProfilePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "Security", id: "#security" }, + { name: "Sign In", id: "https://example.com/login" }, + { name: "Sign Up", id: "https://example.com/signup" }, + ]; + return ( @@ -168,4 +170,4 @@ export default function ProfilePage() { ); -} \ No newline at end of file +}