From eb179377dc2167200e2a71e7021ba1cc24803d4a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:20 +0000 Subject: [PATCH 01/20] Add src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 85 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/app/about-us/page.tsx diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..7b0a4eb --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import TextAbout from "@/components/sections/about/TextAbout"; +import { Instagram, Linkedin, Twitter } from "lucide-react"; + +export default function AboutUsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 8f84d330539f6127655934db83fd11bf10540873 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:21 +0000 Subject: [PATCH 02/20] Add src/app/ai-species-comparison/page.tsx --- src/app/ai-species-comparison/page.tsx | 101 +++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 src/app/ai-species-comparison/page.tsx diff --git a/src/app/ai-species-comparison/page.tsx b/src/app/ai-species-comparison/page.tsx new file mode 100644 index 0000000..1a762a8 --- /dev/null +++ b/src/app/ai-species-comparison/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import { Zap, Gauge, Brain, Shield, Leaf, Skull, Handshake, Home, Star } from "lucide-react"; + +export default function AISpeciesComparisonPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From e57bb68214884a29c122f11db33cda4600c559e0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:21 +0000 Subject: [PATCH 03/20] Add src/app/articles/page.tsx --- src/app/articles/page.tsx | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/articles/page.tsx diff --git a/src/app/articles/page.tsx b/src/app/articles/page.tsx new file mode 100644 index 0000000..c67c747 --- /dev/null +++ b/src/app/articles/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function ArticlesPage() { + 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 ( + <> + +
+

Expert Articles

+

Dive deeper into the world of biodiversity with articles written by leading experts and researchers.

+
+ + ); +} -- 2.49.1 From 47094ad2fb967269428221450f8224835dc30b38 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:21 +0000 Subject: [PATCH 04/20] Add src/app/dinosaur-universe/page.tsx --- src/app/dinosaur-universe/page.tsx | 105 +++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 src/app/dinosaur-universe/page.tsx diff --git a/src/app/dinosaur-universe/page.tsx b/src/app/dinosaur-universe/page.tsx new file mode 100644 index 0000000..6a06df4 --- /dev/null +++ b/src/app/dinosaur-universe/page.tsx @@ -0,0 +1,105 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Twitter, Linkedin, Instagram } from "lucide-react"; + +export default function DinosaurUniversePage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 76bd6db5d02016727b7241f9bfedb7a8d4102ca7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:22 +0000 Subject: [PATCH 05/20] Add src/app/favorite-lists/page.tsx --- src/app/favorite-lists/page.tsx | 43 +++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/favorite-lists/page.tsx diff --git a/src/app/favorite-lists/page.tsx b/src/app/favorite-lists/page.tsx new file mode 100644 index 0000000..6fe9a91 --- /dev/null +++ b/src/app/favorite-lists/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function FavoriteListsPage() { + 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 ( + <> + +
+

Favorite Lists

+

Curate and share your personalized lists of favorite species and ecosystems.

+
+ + ); +} -- 2.49.1 From 5a5cd6b7e3e5c787e636b3b62e30cfc4c4663a3a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:22 +0000 Subject: [PATCH 06/20] Add src/app/forums/page.tsx --- src/app/forums/page.tsx | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/forums/page.tsx diff --git a/src/app/forums/page.tsx b/src/app/forums/page.tsx new file mode 100644 index 0000000..e30b47a --- /dev/null +++ b/src/app/forums/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function ForumsPage() { + 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 ( + <> + +
+

Discussion Forums

+

Engage with a vibrant community of biodiversity enthusiasts, ask questions, share insights, and discuss discoveries.

+
+ + ); +} -- 2.49.1 From 61f7e02a1214e27a6d3927599f6cacc394fe6285 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:23 +0000 Subject: [PATCH 07/20] Add src/app/founder-story/page.tsx --- src/app/founder-story/page.tsx | 80 ++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/app/founder-story/page.tsx diff --git a/src/app/founder-story/page.tsx b/src/app/founder-story/page.tsx new file mode 100644 index 0000000..3856815 --- /dev/null +++ b/src/app/founder-story/page.tsx @@ -0,0 +1,80 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import TextAbout from "@/components/sections/about/TextAbout"; +import { Instagram, Linkedin, Twitter } from "lucide-react"; + +export default function FounderStoryPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From b936753a7c9fa2af75d2a34be97819f6b8b84d73 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:24 +0000 Subject: [PATCH 08/20] Add src/app/mission-vision/page.tsx --- src/app/mission-vision/page.tsx | 80 +++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/app/mission-vision/page.tsx diff --git a/src/app/mission-vision/page.tsx b/src/app/mission-vision/page.tsx new file mode 100644 index 0000000..7bd61de --- /dev/null +++ b/src/app/mission-vision/page.tsx @@ -0,0 +1,80 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import TextAbout from "@/components/sections/about/TextAbout"; +import { Instagram, Linkedin, Twitter } from "lucide-react"; + +export default function MissionVisionPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 6a29f0d2129d6312a58340e924ce35a815ea8dfc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:24 +0000 Subject: [PATCH 09/20] Update src/app/page.tsx --- src/app/page.tsx | 303 ++++++++++++----------------------------------- 1 file changed, 74 insertions(+), 229 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b752a51..cb4b3cb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,41 +34,37 @@ export default function LandingPage() {
@@ -173,17 +138,11 @@ export default function LandingPage() { description="LifeAtlas X is built on a foundation of cutting-edge AI and extensive scientific data, providing unparalleled access to the natural world. Our platform empowers users to not just observe, but to interact with and understand complex biological systems like never before." metrics={[ { - value: "250K+", - title: "High-Res 3D Models", - }, + value: "250K+", title: "High-Res 3D Models"}, { - value: "50+", - title: "Interactive Ecosystems", - }, + value: "50+", title: "Interactive Ecosystems"}, { - value: "100K+", - title: "Research Papers Indexed", - }, + value: "100K+", title: "Research Papers Indexed"}, ]} imageSrc="http://img.b2bpic.net/free-photo/3d-illustration-lysosome-digesting-cellular-waste-german_183364-124029.jpg" imageAlt="Advanced AI visualization of a complex ecosystem" @@ -199,23 +158,11 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Immersive 3D Exploration", - description: "Navigate high-fidelity 3D models of species and ecosystems, bringing life forms to your fingertips with stunning realism.", - imageSrc: "http://img.b2bpic.net/free-photo/baby-flying-gecko-dry-leaves_488145-300.jpg", - imageAlt: "Holographic 3D model of a creature", - }, + title: "Immersive 3D Exploration", description: "Navigate high-fidelity 3D models of species and ecosystems, bringing life forms to your fingertips with stunning realism.", imageSrc: "http://img.b2bpic.net/free-photo/baby-flying-gecko-dry-leaves_488145-300.jpg", imageAlt: "Holographic 3D model of a creature"}, { - title: "Real-time Data Synthesis", - description: "Access up-to-date scientific data, conservation status, genetic information, and more, all synthesized for clarity and insight.", - imageSrc: "http://img.b2bpic.net/free-photo/laboratory-supplies-medical-work_23-2149744730.jpg", - imageAlt: "Multi-panel display of real-time scientific data", - }, + title: "Real-time Data Synthesis", description: "Access up-to-date scientific data, conservation status, genetic information, and more, all synthesized for clarity and insight.", imageSrc: "http://img.b2bpic.net/free-photo/laboratory-supplies-medical-work_23-2149744730.jpg", imageAlt: "Multi-panel display of real-time scientific data"}, { - title: "Interactive Comparative Analysis", - description: "Compare species side-by-side using dynamic visualization tools, highlighting anatomical differences and shared traits.", - imageSrc: "http://img.b2bpic.net/free-photo/plants-laboratory-items-flat-lay_23-2148785087.jpg", - imageAlt: "Split-screen interface comparing two species", - }, + title: "Interactive Comparative Analysis", description: "Compare species side-by-side using dynamic visualization tools, highlighting anatomical differences and shared traits.", imageSrc: "http://img.b2bpic.net/free-photo/plants-laboratory-items-flat-lay_23-2148785087.jpg", imageAlt: "Split-screen interface comparing two species"}, ]} title="Unlock Powerful Discovery Tools" description="LifeAtlas X offers an array of features designed to enhance learning, research, and exploration for every user." @@ -231,53 +178,17 @@ export default function LandingPage() { carouselMode="buttons" products={[ { - id: "oceanic-abyss", - name: "Oceanic Abyss", - price: "Premium", - variant: "Deep Sea", - imageSrc: "http://img.b2bpic.net/free-photo/diver-sea-surrounded-by-archeological-building-ruins_23-2151571724.jpg", - imageAlt: "Bioluminescent deep-sea creatures", - }, + id: "oceanic-abyss", name: "Oceanic Abyss", price: "Premium", variant: "Deep Sea", imageSrc: "http://img.b2bpic.net/free-photo/diver-sea-surrounded-by-archeological-building-ruins_23-2151571724.jpg", imageAlt: "Bioluminescent deep-sea creatures"}, { - id: "amazon-rainforest", - name: "Amazon Rainforest", - price: "Free", - variant: "Terrestrial", - imageSrc: "http://img.b2bpic.net/free-photo/photo-red-colobus-piliocolobus-tephrosceles-sitting-branch-zanzibar-tanzania_1217-4781.jpg", - imageAlt: "Lush Amazon rainforest canopy", - }, + id: "amazon-rainforest", name: "Amazon Rainforest", price: "Free", variant: "Terrestrial", imageSrc: "http://img.b2bpic.net/free-photo/photo-red-colobus-piliocolobus-tephrosceles-sitting-branch-zanzibar-tanzania_1217-4781.jpg", imageAlt: "Lush Amazon rainforest canopy"}, { - id: "dinosaur-era", - name: "Dinosaur Era", - price: "Premium", - variant: "Paleontology", - imageSrc: "http://img.b2bpic.net/free-photo/velociraptor-toy_1203-853.jpg", - imageAlt: "Prehistoric landscape with a dinosaur", - }, + id: "dinosaur-era", name: "Dinosaur Era", price: "Premium", variant: "Paleontology", imageSrc: "http://img.b2bpic.net/free-photo/velociraptor-toy_1203-853.jpg", imageAlt: "Prehistoric landscape with a dinosaur"}, { - id: "arctic-tundra", - name: "Arctic Tundra", - price: "Free", - variant: "Polar", - imageSrc: "http://img.b2bpic.net/free-photo/lake-shoji-japan-view-beautiful-white-winter_1232-2231.jpg", - imageAlt: "Arctic tundra with northern lights", - }, + id: "arctic-tundra", name: "Arctic Tundra", price: "Free", variant: "Polar", imageSrc: "http://img.b2bpic.net/free-photo/lake-shoji-japan-view-beautiful-white-winter_1232-2231.jpg", imageAlt: "Arctic tundra with northern lights"}, { - id: "desert-biomes", - name: "Desert Biomes", - price: "Premium", - variant: "Arid", - imageSrc: "http://img.b2bpic.net/free-photo/southwest-landscape-digital-art_23-2151785635.jpg", - imageAlt: "Desert landscape at sunset", - }, + id: "desert-biomes", name: "Desert Biomes", price: "Premium", variant: "Arid", imageSrc: "http://img.b2bpic.net/free-photo/southwest-landscape-digital-art_23-2151785635.jpg", imageAlt: "Desert landscape at sunset"}, { - id: "coral-reefs", - name: "Coral Reefs", - price: "Free", - variant: "Marine", - imageSrc: "http://img.b2bpic.net/free-photo/pipefish-closeup-from-side-view-head-pipefish-with-black-background_488145-922.jpg", - imageAlt: "Vibrant coral reef with marine life", - }, + id: "coral-reefs", name: "Coral Reefs", price: "Free", variant: "Marine", imageSrc: "http://img.b2bpic.net/free-photo/pipefish-closeup-from-side-view-head-pipefish-with-black-background_488145-922.jpg", imageAlt: "Vibrant coral reef with marine life"}, ]} title="Curated Exploration Modules" description="Begin your journey with our hand-picked exploration modules, designed to guide you through the most fascinating aspects of life on Earth." @@ -291,20 +202,11 @@ export default function LandingPage() { tag="Global Reach" metrics={[ { - id: "users", - value: "500K+", - description: "Active Users: Engaged learners and researchers worldwide.", - }, + id: "users", value: "500K+", description: "Active Users: Engaged learners and researchers worldwide."}, { - id: "data", - value: "100M+", - description: "Data Points: Constantly updated biodiversity records.", - }, + id: "data", value: "100M+", description: "Data Points: Constantly updated biodiversity records."}, { - id: "satisfaction", - value: "98%", - description: "User Satisfaction: Loved by students, educators, and scientists.", - }, + id: "satisfaction", value: "98%", description: "User Satisfaction: Loved by students, educators, and scientists."}, ]} metricsAnimation="slide-up" /> @@ -318,50 +220,20 @@ export default function LandingPage() { carouselMode="buttons" testimonials={[ { - id: "1", - name: "Sarah Johnson", - handle: "@bioexplorer", - testimonial: "LifeAtlas X has revolutionized how I approach my biology studies. The 3D models and interactive comparisons make complex topics easy to grasp. Truly an essential tool for any student!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/vertical-portrait-alluring-young-female-student-sitting-park-university-campus-near-wifi-spot-studying-waiting-friend-use-laptop-mobile-phone-smiling-cheerful-camera_197531-30564.jpg", - imageAlt: "Sarah Johnson", - }, + id: "1", name: "Sarah Johnson", handle: "@bioexplorer", testimonial: "LifeAtlas X has revolutionized how I approach my biology studies. The 3D models and interactive comparisons make complex topics easy to grasp. Truly an essential tool for any student!", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/vertical-portrait-alluring-young-female-student-sitting-park-university-campus-near-wifi-spot-studying-waiting-friend-use-laptop-mobile-phone-smiling-cheerful-camera_197531-30564.jpg", imageAlt: "Sarah Johnson"}, { - id: "2", - name: "Dr. David Chen", - handle: "@profchembio", - testimonial: "As an educator, I find LifeAtlas X an invaluable resource. It brings biodiversity to life in the classroom, fostering genuine curiosity and deeper understanding among my students.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/shocked-surprised-unshaven-young-man-carries-vintage-book-closely-chest-stares-with-bugged-eyes-has-scared-expression-wears-optical-glasses_273609-24116.jpg", - imageAlt: "Dr. David Chen", - }, + id: "2", name: "Dr. David Chen", handle: "@profchembio", testimonial: "As an educator, I find LifeAtlas X an invaluable resource. It brings biodiversity to life in the classroom, fostering genuine curiosity and deeper understanding among my students.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/shocked-surprised-unshaven-young-man-carries-vintage-book-closely-chest-stares-with-bugged-eyes-has-scared-expression-wears-optical-glasses_273609-24116.jpg", imageAlt: "Dr. David Chen"}, { - id: "3", - name: "Emily Rodriguez", - handle: "@eco_guardian", - testimonial: "The real-time data and conservation status updates on LifeAtlas X are critical for my work. It's an unparalleled resource for monitoring and understanding global biodiversity challenges.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-black-apron-working-greenhouse_1157-30878.jpg", - imageAlt: "Emily Rodriguez", - }, + id: "3", name: "Emily Rodriguez", handle: "@eco_guardian", testimonial: "The real-time data and conservation status updates on LifeAtlas X are critical for my work. It's an unparalleled resource for monitoring and understanding global biodiversity challenges.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/woman-black-apron-working-greenhouse_1157-30878.jpg", imageAlt: "Emily Rodriguez"}, { - id: "4", - name: "Michael Brown", - handle: "@nature_fan", - testimonial: "I love exploring different ecosystems on LifeAtlas X! The gamified discovery makes learning so much fun, and I've found so many new fascinating creatures. Highly recommend for curious minds!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/senior-women-spending-time-together-cafe-talking-working_23-2149260275.jpg", - imageAlt: "Michael Brown", - }, + id: "4", name: "Michael Brown", handle: "@nature_fan", testimonial: "I love exploring different ecosystems on LifeAtlas X! The gamified discovery makes learning so much fun, and I've found so many new fascinating creatures. Highly recommend for curious minds!", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/senior-women-spending-time-together-cafe-talking-working_23-2149260275.jpg", imageAlt: "Michael Brown"}, { - id: "5", - name: "Dr. Anya Sharma", - handle: "@genetics_res", - testimonial: "The depth of scientific data and comparative analysis tools available on LifeAtlas X are a game-changer for my research. It's robust, reliable, and incredibly user-friendly.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/male-researcher-with-tablet-biotechnology-laboratory_23-2148776151.jpg", - imageAlt: "Dr. Anya Sharma", - }, + id: "5", name: "Dr. Anya Sharma", handle: "@genetics_res", testimonial: "The depth of scientific data and comparative analysis tools available on LifeAtlas X are a game-changer for my research. It's robust, reliable, and incredibly user-friendly.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/male-researcher-with-tablet-biotechnology-laboratory_23-2148776151.jpg", imageAlt: "Dr. Anya Sharma"}, ]} showRating={true} title="Voices from Our Explorers" @@ -374,14 +246,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "Biodiversity Institute", - "Global Wildlife Fund", - "EcoResearch University", - "Oceanic Conservancy", - "PaleoTech Labs", - "Botanical Gardens Foundation", - "Environmental Data Alliance", - ]} + "Biodiversity Institute", "Global Wildlife Fund", "EcoResearch University", "Oceanic Conservancy", "PaleoTech Labs", "Botanical Gardens Foundation", "Environmental Data Alliance"]} title="Partnerships for Discovery" description="LifeAtlas X collaborates with leading universities, research institutions, and conservation organizations worldwide to bring you the most accurate and comprehensive data." showCard={true} @@ -394,20 +259,11 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { - id: "1", - title: "What kind of data does LifeAtlas X provide?", - content: "LifeAtlas X offers comprehensive biodiversity data including species profiles, genetic information, conservation status, ecological roles, geographic distribution, 3D models, and interactive visualizations.", - }, + id: "1", title: "What kind of data does LifeAtlas X provide?", content: "LifeAtlas X offers comprehensive biodiversity data including species profiles, genetic information, conservation status, ecological roles, geographic distribution, 3D models, and interactive visualizations."}, { - id: "2", - title: "Is LifeAtlas X suitable for all age groups?", - content: "Yes, LifeAtlas X is designed for a diverse audience, from students (ages 12+) and educators seeking engaging resources to researchers and enthusiasts looking for in-depth scientific data and exploration.", - }, + id: "2", title: "Is LifeAtlas X suitable for all age groups?", content: "Yes, LifeAtlas X is designed for a diverse audience, from students (ages 12+) and educators seeking engaging resources to researchers and enthusiasts looking for in-depth scientific data and exploration."}, { - id: "3", - title: "Can I contribute to the platform?", - content: "LifeAtlas X fosters a vibrant community. While core data is scientifically curated, we offer features for community contribution, feedback, and engagement, which you can learn more about by joining our community forums.", - }, + id: "3", title: "Can I contribute to the platform?", content: "LifeAtlas X fosters a vibrant community. While core data is scientifically curated, we offer features for community contribution, feedback, and engagement, which you can learn more about by joining our community forums."}, ]} title="Your Questions, Answered" description="Find quick answers to common inquiries about LifeAtlas X and how it can enhance your learning and research journey." @@ -419,20 +275,15 @@ export default function LandingPage() {
@@ -444,19 +295,13 @@ export default function LandingPage() { socialLinks={[ { icon: Twitter, - href: "#", - ariaLabel: "Twitter", - }, + href: "#", ariaLabel: "Twitter"}, { icon: Linkedin, - href: "#", - ariaLabel: "LinkedIn", - }, + href: "#", ariaLabel: "LinkedIn"}, { icon: Instagram, - href: "#", - ariaLabel: "Instagram", - }, + href: "#", ariaLabel: "Instagram"}, ]} /> -- 2.49.1 From fcce7d1277910ee5f62983181783fd114b3deba3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:24 +0000 Subject: [PATCH 10/20] Add src/app/saved-species/page.tsx --- src/app/saved-species/page.tsx | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/saved-species/page.tsx diff --git a/src/app/saved-species/page.tsx b/src/app/saved-species/page.tsx new file mode 100644 index 0000000..a7978e4 --- /dev/null +++ b/src/app/saved-species/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function SavedSpeciesPage() { + 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 ( + <> + +
+

Saved Species

+

Access your personal collection of saved species for quick reference and continued exploration.

+
+ + ); +} -- 2.49.1 From 1343f7821ef59408673c8f4e0eaf3fc94da99835 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:25 +0000 Subject: [PATCH 11/20] Add src/app/species/[slug]/page.tsx --- src/app/species/[slug]/page.tsx | 143 ++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 src/app/species/[slug]/page.tsx diff --git a/src/app/species/[slug]/page.tsx b/src/app/species/[slug]/page.tsx new file mode 100644 index 0000000..393a6ec --- /dev/null +++ b/src/app/species/[slug]/page.tsx @@ -0,0 +1,143 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Twitter, Linkedin, Instagram } from "lucide-react"; + +interface SpeciesProfilePageProps { + params: { + slug: string; + }; +} + +export default function SpeciesProfilePage({ params }: SpeciesProfilePageProps) { + const { slug } = params; + const speciesName = slug.replace(/-/g, ' ').split(' ').map(word => word.charAt(0).toUpperCase() + word.slice(1)).join(' '); + + // Dummy data for a species profile + const speciesData = { + scientificName: `Panthera leo (${speciesName})`, + classification: "Kingdom: Animalia, Phylum: Chordata, Class: Mammalia, Order: Carnivora, Family: Felidae, Genus: Panthera, Species: P. leo", habitat: "Savannas, grasslands, dense bush, and open woodlands in sub-Saharan Africa and Asia.", distributionMap: "Placeholder for a global distribution map showing populations in Africa and a small population in India.", lifespan: "10-14 years in the wild, up to 20 years in captivity.", diet: "Carnivore, primarily preying on large ungulates like zebra, wildebeest, buffalo, and antelope.", predators: "Adult lions have no natural predators other than humans. Cubs may be preyed upon by hyenas, leopards, and other large predators.", prey: "Zebra, wildebeest, buffalo, antelope, warthogs, and sometimes smaller animals like birds or reptiles.", conservationStatus: "Vulnerable (IUCN Red List)", adaptations: "Powerful jaws, retractable claws, excellent night vision, and social hunting strategies.", evolutionHistory: "Lions evolved in Africa, with evidence suggesting their lineage diverged from other panthera species around 1.9 to 1.4 million years ago.", images: [ + "http://img.b2bpic.net/free-photo/majestically-roaring-lion-savanna-africa-generated-by-ai_188544-12297.jpg", "http://img.b2bpic.net/free-photo/lioness-with-cubs-savanna-generated-by-ai_188544-12293.jpg" + ], + funFacts: [ + "A group of lions is called a pride.", "Male lions are known for their impressive manes, which can indicate their health and and age.", "Lions are the only cats that live in groups." + ] + }; + + const legalSectionsContent = [ + { + heading: "Scientific Name", content: [{ type: "paragraph", text: speciesData.scientificName }], + }, + { + heading: "Classification", content: [{ type: "paragraph", text: speciesData.classification }], + }, + { + heading: "Habitat", content: [{ type: "paragraph", text: speciesData.habitat }], + }, + { + heading: "Distribution Map", content: [{ type: "paragraph", text: speciesData.distributionMap + " (Image placeholder: " + "http://img.b2bpic.net/free-photo/abstract-polygonal-world-map-geometric-illustration-blue-background_1017-38080.jpg" + ")"}], + }, + { + heading: "Lifespan", content: [{ type: "paragraph", text: speciesData.lifespan }], + }, + { + heading: "Diet", content: [{ type: "paragraph", text: speciesData.diet }], + }, + { + heading: "Predators", content: [{ type: "paragraph", text: speciesData.predators }], + }, + { + heading: "Prey", content: [{ type: "paragraph", text: speciesData.prey }], + }, + { + heading: "Conservation Status", content: [{ type: "paragraph", text: speciesData.conservationStatus }], + }, + { + heading: "Adaptations", content: [{ type: "paragraph", text: speciesData.adaptations }], + }, + { + heading: "Evolution History", content: [{ type: "paragraph", text: speciesData.evolutionHistory }], + }, + { + heading: "Images", content: [ + { type: "paragraph", text: "Image 1: " + speciesData.images[0] }, + { type: "paragraph", text: "Image 2: " + speciesData.images[1] } + ], + }, + { + heading: "Fun Facts", content: [{ type: "list", items: speciesData.funFacts }], + }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 724c3262136f172a276d91b53d4d9abe02ef3eae Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:25 +0000 Subject: [PATCH 12/20] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 34aea07..0435273 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter), sans-serif; + font-family: var(--font-archivo), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter), sans-serif; + font-family: var(--font-archivo), sans-serif; } -- 2.49.1 From adfd78909237d9e88d318fcf007f19910e565bcf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:42:26 +0000 Subject: [PATCH 13/20] Add src/app/user-profiles/page.tsx --- src/app/user-profiles/page.tsx | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/user-profiles/page.tsx 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.

+
+ + ); +} -- 2.49.1 From 7a360b339297598a77de768ac05ffceed4701353 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:45:11 +0000 Subject: [PATCH 14/20] Update src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx index 7b0a4eb..766964f 100644 --- a/src/app/about-us/page.tsx +++ b/src/app/about-us/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import TextAbout from "@/components/sections/about/TextAbout"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import { Instagram, Linkedin, Twitter } from "lucide-react"; export default function AboutUsPage() { @@ -39,7 +39,7 @@ export default function AboutUsPage() { { name: "Contact Us", id: "/contact-us" } ]} logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg" - logoAlt="LifeAtlas X Logo" + logoAlt="LifeAtlas X" brandName="LifeAtlas X" bottomLeftText="Global Community" bottomRightText="explore@lifeatlasx.com" @@ -49,10 +49,12 @@ export default function AboutUsPage() {
- Date: Wed, 10 Jun 2026 14:45:12 +0000 Subject: [PATCH 15/20] Update src/app/ai-species-comparison/page.tsx --- src/app/ai-species-comparison/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/ai-species-comparison/page.tsx b/src/app/ai-species-comparison/page.tsx index 1a762a8..e633044 100644 --- a/src/app/ai-species-comparison/page.tsx +++ b/src/app/ai-species-comparison/page.tsx @@ -5,7 +5,7 @@ import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import FooterCard from '@/components/sections/footer/FooterCard'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import { Zap, Gauge, Brain, Shield, Leaf, Skull, Handshake, Home, Star } from "lucide-react"; +import { Zap, Gauge, Brain, Shield, Leaf, Skull, Handshake, Home, Star, Twitter, Linkedin, Instagram } from "lucide-react"; export default function AISpeciesComparisonPage() { return ( @@ -47,7 +47,7 @@ export default function AISpeciesComparisonPage() { name: "Contact", id: "#contact"}, ]} logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg" - logoAlt="LifeAtlas X Logo" + logoAlt="LifeAtlas X" brandName="LifeAtlas X" bottomLeftText="Global Community" bottomRightText="explore@lifeatlasx.com" @@ -61,7 +61,6 @@ export default function AISpeciesComparisonPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - gridVariant="uniform-all-items-equal" title="AI Species Comparison: Battle of the Biomes" description="Compare the most formidable creatures across key metrics to determine ultimate evolutionary prowess. See how Strength, Speed, Intelligence, and more stack up." metrics={[ -- 2.49.1 From 59f2ec7af4b8874cf808078d3c6625f916164562 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:45:12 +0000 Subject: [PATCH 16/20] Update src/app/founder-story/page.tsx --- src/app/founder-story/page.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/founder-story/page.tsx b/src/app/founder-story/page.tsx index 3856815..9c45a13 100644 --- a/src/app/founder-story/page.tsx +++ b/src/app/founder-story/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import TextAbout from "@/components/sections/about/TextAbout"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import { Instagram, Linkedin, Twitter } from "lucide-react"; export default function FounderStoryPage() { @@ -39,7 +39,7 @@ export default function FounderStoryPage() { { name: "Contact Us", id: "/contact-us" } ]} logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg" - logoAlt="LifeAtlas X Logo" + logoAlt="LifeAtlas X" brandName="LifeAtlas X" bottomLeftText="Global Community" bottomRightText="explore@lifeatlasx.com" @@ -49,11 +49,12 @@ export default function FounderStoryPage() {
-
-- 2.49.1 From 9764df535a3ec7b47f7647c9bc5fcae805fbf164 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:45:13 +0000 Subject: [PATCH 17/20] Update src/app/mission-vision/page.tsx --- src/app/mission-vision/page.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/mission-vision/page.tsx b/src/app/mission-vision/page.tsx index 7bd61de..294f087 100644 --- a/src/app/mission-vision/page.tsx +++ b/src/app/mission-vision/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import TextAbout from "@/components/sections/about/TextAbout"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import { Instagram, Linkedin, Twitter } from "lucide-react"; export default function MissionVisionPage() { @@ -39,7 +39,7 @@ export default function MissionVisionPage() { { name: "Contact Us", id: "/contact-us" } ]} logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg" - logoAlt="LifeAtlas X Logo" + logoAlt="LifeAtlas X" brandName="LifeAtlas X" bottomLeftText="Global Community" bottomRightText="explore@lifeatlasx.com" @@ -49,11 +49,12 @@ export default function MissionVisionPage() {
-
-- 2.49.1 From fe869272485d33097be06d0379c03719d077793e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:48:03 +0000 Subject: [PATCH 18/20] Update src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx index 766964f..9ad84d4 100644 --- a/src/app/about-us/page.tsx +++ b/src/app/about-us/page.tsx @@ -84,4 +84,4 @@ export default function AboutUsPage() { ); -} +} \ No newline at end of file -- 2.49.1 From d8179033baf1b11f8de16e5d6103945fa949ca71 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:48:04 +0000 Subject: [PATCH 19/20] Update src/app/ai-species-comparison/page.tsx --- src/app/ai-species-comparison/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/ai-species-comparison/page.tsx b/src/app/ai-species-comparison/page.tsx index e633044..1cdd134 100644 --- a/src/app/ai-species-comparison/page.tsx +++ b/src/app/ai-species-comparison/page.tsx @@ -97,4 +97,4 @@ export default function AISpeciesComparisonPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 873f48c0aa67372249ce54142b33e1ce9581e891 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:50:59 +0000 Subject: [PATCH 20/20] Update src/app/species/[slug]/page.tsx --- src/app/species/[slug]/page.tsx | 171 +++++++++++++------------------- 1 file changed, 68 insertions(+), 103 deletions(-) diff --git a/src/app/species/[slug]/page.tsx b/src/app/species/[slug]/page.tsx index 393a6ec..1164239 100644 --- a/src/app/species/[slug]/page.tsx +++ b/src/app/species/[slug]/page.tsx @@ -3,120 +3,91 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import LegalSection from '@/components/legal/LegalSection'; import FooterCard from '@/components/sections/footer/FooterCard'; +import LegalSection from '@/components/legal/LegalSection'; import { Twitter, Linkedin, Instagram } from "lucide-react"; -interface SpeciesProfilePageProps { - params: { - slug: string; - }; -} - -export default function SpeciesProfilePage({ params }: SpeciesProfilePageProps) { - const { slug } = params; - const speciesName = slug.replace(/-/g, ' ').split(' ').map(word => word.charAt(0).toUpperCase() + word.slice(1)).join(' '); - - // Dummy data for a species profile - const speciesData = { - scientificName: `Panthera leo (${speciesName})`, - classification: "Kingdom: Animalia, Phylum: Chordata, Class: Mammalia, Order: Carnivora, Family: Felidae, Genus: Panthera, Species: P. leo", habitat: "Savannas, grasslands, dense bush, and open woodlands in sub-Saharan Africa and Asia.", distributionMap: "Placeholder for a global distribution map showing populations in Africa and a small population in India.", lifespan: "10-14 years in the wild, up to 20 years in captivity.", diet: "Carnivore, primarily preying on large ungulates like zebra, wildebeest, buffalo, and antelope.", predators: "Adult lions have no natural predators other than humans. Cubs may be preyed upon by hyenas, leopards, and other large predators.", prey: "Zebra, wildebeest, buffalo, antelope, warthogs, and sometimes smaller animals like birds or reptiles.", conservationStatus: "Vulnerable (IUCN Red List)", adaptations: "Powerful jaws, retractable claws, excellent night vision, and social hunting strategies.", evolutionHistory: "Lions evolved in Africa, with evidence suggesting their lineage diverged from other panthera species around 1.9 to 1.4 million years ago.", images: [ - "http://img.b2bpic.net/free-photo/majestically-roaring-lion-savanna-africa-generated-by-ai_188544-12297.jpg", "http://img.b2bpic.net/free-photo/lioness-with-cubs-savanna-generated-by-ai_188544-12293.jpg" - ], - funFacts: [ - "A group of lions is called a pride.", "Male lions are known for their impressive manes, which can indicate their health and and age.", "Lions are the only cats that live in groups." - ] - }; - - const legalSectionsContent = [ - { - heading: "Scientific Name", content: [{ type: "paragraph", text: speciesData.scientificName }], - }, - { - heading: "Classification", content: [{ type: "paragraph", text: speciesData.classification }], - }, - { - heading: "Habitat", content: [{ type: "paragraph", text: speciesData.habitat }], - }, - { - heading: "Distribution Map", content: [{ type: "paragraph", text: speciesData.distributionMap + " (Image placeholder: " + "http://img.b2bpic.net/free-photo/abstract-polygonal-world-map-geometric-illustration-blue-background_1017-38080.jpg" + ")"}], - }, - { - heading: "Lifespan", content: [{ type: "paragraph", text: speciesData.lifespan }], - }, - { - heading: "Diet", content: [{ type: "paragraph", text: speciesData.diet }], - }, - { - heading: "Predators", content: [{ type: "paragraph", text: speciesData.predators }], - }, - { - heading: "Prey", content: [{ type: "paragraph", text: speciesData.prey }], - }, - { - heading: "Conservation Status", content: [{ type: "paragraph", text: speciesData.conservationStatus }], - }, - { - heading: "Adaptations", content: [{ type: "paragraph", text: speciesData.adaptations }], - }, - { - heading: "Evolution History", content: [{ type: "paragraph", text: speciesData.evolutionHistory }], - }, - { - heading: "Images", content: [ - { type: "paragraph", text: "Image 1: " + speciesData.images[0] }, - { type: "paragraph", text: "Image 2: " + speciesData.images[1] } - ], - }, - { - heading: "Fun Facts", content: [{ type: "list", items: speciesData.funFacts }], - }, +export default function SpeciesSlugPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about-us" }, + { name: "Features", id: "#features" }, + { name: "Explore", id: "#explore" }, + { name: "AI Species Comparison", id: "/ai-species-comparison" }, + { name: "Metrics", id: "#metrics" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Partners", id: "#partners" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "/contact-us" }, ]; return ( -
+
@@ -125,19 +96,13 @@ export default function SpeciesProfilePage({ params }: SpeciesProfilePageProps) logoText="LifeAtlas X" copyrightText="© 2024 LifeAtlas X. All rights reserved." socialLinks={[ - { - icon: Twitter, - href: "#", ariaLabel: "Twitter"}, - { - icon: Linkedin, - href: "#", ariaLabel: "LinkedIn"}, - { - icon: Instagram, - href: "#", ariaLabel: "Instagram"}, + { icon: Twitter, href: "#", ariaLabel: "Twitter" }, + { icon: Linkedin, href: "#", ariaLabel: "LinkedIn" }, + { icon: Instagram, href: "#", ariaLabel: "Instagram" }, ]} />
); -} \ No newline at end of file +} -- 2.49.1