diff --git a/src/app/user-profiles/page.tsx b/src/app/user-profiles/page.tsx new file mode 100644 index 0000000..cccef46 --- /dev/null +++ b/src/app/user-profiles/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function UserProfilesPage() { + const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Explore", id: "#explore" }, + { name: "Metrics", id: "#metrics" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Partners", id: "#partners" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" }, + { name: "User Profiles", id: "/user-profiles" }, + { name: "Saved Species", id: "/saved-species" }, + { name: "Favorite Lists", id: "/favorite-lists" }, + { name: "Discussion Forums", id: "/forums" }, + { name: "Expert Articles", id: "/articles" }, + { name: "Wildlife Challenges", id: "/challenges" }, + { name: "Careers", id: "/careers" } + ]; + + return ( + <> + + + User Profiles + Manage your profile, track your contributions, and connect with other explorers in the LifeAtlas X community. + + > + ); +}
Manage your profile, track your contributions, and connect with other explorers in the LifeAtlas X community.