Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 72f8650c7d | |||
| 1b4025d0d8 | |||
| 66d9a6bdc0 | |||
| d96d3baccf | |||
| cd0a3a50ca |
82
src/app/about-us/page.tsx
Normal file
82
src/app/about-us/page.tsx
Normal file
@@ -0,0 +1,82 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Twitter, Linkedin, Instagram } from "lucide-react";
|
||||
|
||||
|
||||
export default function AboutUsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about-us" },
|
||||
{ name: "Founder Story", id: "/founder-story" },
|
||||
{ name: "Mission & Vision", id: "/mission-vision" },
|
||||
{ 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" },
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg"
|
||||
logoAlt="LifeAtlas X Logo"
|
||||
brandName="LifeAtlas X"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="explore@lifeatlasx.com"
|
||||
button={{
|
||||
text: "Begin Your Exploration", href: "#hero"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-us-content" data-section="about-us-content">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Who We Are: LifeAtlas X"
|
||||
description="LifeAtlas X is a pioneering platform dedicated to making the vast and complex world of Earth's biodiversity accessible to everyone. Born from a passion for nature and the power of artificial intelligence, we strive to transform how individuals learn, explore, and connect with life on our planet. Our team of scientists, engineers, and educators are committed to building an interactive and engaging experience that inspires discovery and fosters environmental stewardship."
|
||||
metrics={[
|
||||
{ value: "50+", title: "Dedicated Team" },
|
||||
{ value: "5 Yrs", title: "In Development" },
|
||||
{ value: "100+", title: "Global Partners" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-multiethnic-students-with-laptop-books-university-campus_23-2149594589.jpg"
|
||||
imageAlt="Diverse team working together"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
103
src/app/blog/page.tsx
Normal file
103
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,103 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Linkedin, Twitter } from "lucide-react";
|
||||
|
||||
export default function BlogPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
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: "Blog", id: "/blog"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Support", id: "/support"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg"
|
||||
logoAlt="LifeAtlas X Logo"
|
||||
brandName="LifeAtlas X"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="explore@lifeatlasx.com"
|
||||
button={{
|
||||
text: "Begin Your Exploration", href: "/"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog-page-content" data-section="blog-page-content">
|
||||
<BlogCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Latest Insights from LifeAtlas X"
|
||||
description="Dive into our articles on biodiversity, AI in science, conservation efforts, and exciting new discoveries."
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "Biodiversity", title: "The Secret Life of Deep-Sea Hydrothermal Vents", excerpt: "Explore the extreme ecosystems thriving in the darkest depths of our oceans, powered by chemosynthesis rather than sunlight.", imageSrc: "http://img.b2bpic.net/free-photo/view-planet-earth-sea-light-reflection_1157-12349.jpg", imageAlt: "Deep-sea hydrothermal vent", authorName: "Dr. Elena Petrova", authorAvatar: "http://img.b2bpic.net/free-photo/young-beautiful-woman-pink-ribbon-breast-cancer-awareness-concept_23-2148750849.jpg", date: "Oct 26, 2024"},
|
||||
{
|
||||
id: "2", category: "AI & Science", title: "How AI is Revolutionizing Species Identification", excerpt: "Learn how artificial intelligence is accelerating the discovery and classification of new species, from microscopic organisms to unknown plants.", imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-brain-illustration_23-2149503933.jpg", imageAlt: "AI brain illustration", authorName: "Markus Jensen", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-young-scientist-working-modern-laboratory_23-2148680190.jpg", date: "Oct 20, 2024"},
|
||||
{
|
||||
id: "3", category: "Conservation", title: "The Race to Save the World's Endangered Frogs", excerpt: "Discover the challenges and innovative solutions being employed globally to protect amphibian populations from extinction.", imageSrc: "http://img.b2bpic.net/free-photo/red-eyed-tree-frog-agalychnis-callidryas-pennsylvania_11702-866.jpg", imageAlt: "Red-eyed tree frog", authorName: "Sophie Dubois", authorAvatar: "http://img.b2bpic.net/free-photo/pretty-brunette-woman-using-her-laptop_23-2147775560.jpg", date: "Oct 15, 2024"},
|
||||
{
|
||||
id: "4", category: "Ecology", title: "Understanding Keystone Species and Their Ecological Impact", excerpt: "Explore the critical role certain species play in maintaining the balance and health of their ecosystems, and what happens when they disappear.", imageSrc: "http://img.b2bpic.net/free-photo/european-wildcat-walking-forest_117188-755.jpg", imageAlt: "Keystone species illustration", authorName: "Dr. Alex Chen", authorAvatar: "http://img.b2bpic.net/free-photo/man-looking-digital-tablet_23-2148641957.jpg", date: "Oct 10, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
87
src/app/contact-us/page.tsx
Normal file
87
src/app/contact-us/page.tsx
Normal file
@@ -0,0 +1,87 @@
|
||||
"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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import { Twitter, Linkedin, Instagram } from "lucide-react";
|
||||
|
||||
export default function ContactUsPage() {
|
||||
const navItems = [
|
||||
{ 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 Us", id: "/contact-us" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms-of-service" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg"
|
||||
logoAlt="LifeAtlas X Logo"
|
||||
brandName="LifeAtlas X"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="explore@lifeatlasx.com"
|
||||
button={{
|
||||
text: "Begin Your Exploration", href: "/"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form-section" data-section="contact-form-section">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="We're here to help! Fill out the form below or reach out to us through our social channels."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Your Message", rows: 5, required: true }}
|
||||
buttonText="Send Message"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/communication-connection-technology-internet_1421-43.jpg"
|
||||
imageAlt="People communicating"
|
||||
mediaPosition="right"
|
||||
useInvertedBackground={false}
|
||||
onSubmit={(data) => {
|
||||
console.log("Contact form submitted:", data);
|
||||
alert("Your message has been sent!");
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
107
src/app/faq/page.tsx
Normal file
107
src/app/faq/page.tsx
Normal file
@@ -0,0 +1,107 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Linkedin, Twitter } from "lucide-react";
|
||||
|
||||
export default function FaqPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
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: "Blog", id: "/blog"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Support", id: "/support"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg"
|
||||
logoAlt="LifeAtlas X Logo"
|
||||
brandName="LifeAtlas X"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="explore@lifeatlasx.com"
|
||||
button={{
|
||||
text: "Begin Your Exploration", href: "/"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-page-content" data-section="faq-page-content">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about LifeAtlas X, its features, and how to get the most out of your exploration."
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is LifeAtlas X?", content: "LifeAtlas X is an AI-powered digital encyclopedia for exploring Earth's biodiversity. It offers immersive 3D models, real-time data, and interactive tools for students, educators, researchers, and enthusiasts."},
|
||||
{
|
||||
id: "2", title: "How accurate is the information?", content: "Our platform synthesizes data from reputable scientific databases, peer-reviewed research, and expert communities, all validated by a team of biologists and AI specialists to ensure high accuracy."},
|
||||
{
|
||||
id: "3", title: "Can I use LifeAtlas X for my research?", content: "Absolutely! LifeAtlas X provides advanced comparative analysis tools, extensive data points, and references to scientific literature, making it a powerful resource for academic and professional research."},
|
||||
{
|
||||
id: "4", title: "Is there a mobile app available?", content: "Yes, LifeAtlas X is available on both desktop and mobile devices. Our mobile app offers a streamlined experience with full access to 3D models and interactive features on the go."},
|
||||
{
|
||||
id: "5", title: "How do I report an issue or provide feedback?", content: "You can report issues or provide feedback directly through our Support Center, accessible from the navigation menu. We highly value user input to continuously improve the platform."},
|
||||
{
|
||||
id: "6", title: "Are there educational resources for teachers?", content: "We offer dedicated educational modules, lesson plans, and classroom integration guides for educators. Visit our 'For Educators' section in the Support Center for more details."},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
295
src/app/page.tsx
295
src/app/page.tsx
@@ -34,41 +34,29 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Features",
|
||||
id: "#features",
|
||||
},
|
||||
name: "Features", id: "#features"},
|
||||
{
|
||||
name: "Explore",
|
||||
id: "#explore",
|
||||
},
|
||||
name: "Explore", id: "#explore"},
|
||||
{
|
||||
name: "Metrics",
|
||||
id: "#metrics",
|
||||
},
|
||||
name: "Metrics", id: "#metrics"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "Partners",
|
||||
id: "#partners",
|
||||
},
|
||||
name: "Partners", id: "#partners"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Blog", id: "/blog"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Support", id: "/support"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg"
|
||||
logoAlt="LifeAtlas X Logo"
|
||||
@@ -76,61 +64,40 @@ export default function LandingPage() {
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="explore@lifeatlasx.com"
|
||||
button={{
|
||||
text: "Begin Your Exploration",
|
||||
href: "#hero",
|
||||
}}
|
||||
text: "Begin Your Exploration", href: "#hero"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Explore Every Living Thing Ever Known"
|
||||
description="Discover animals, birds, reptiles, fish, insects, fungi, bacteria, viruses, plants, and extinct species through an immersive AIpowered experience. Search, compare, and explore millions of organisms across an interactive 3D Earth with stunning visuals, realtime data, and gamified discovery tools."
|
||||
kpis={[
|
||||
{
|
||||
value: "10M+",
|
||||
label: "Species Explored",
|
||||
},
|
||||
value: "10M+", label: "Species Explored"},
|
||||
{
|
||||
value: "100+",
|
||||
label: "Interactive Models",
|
||||
},
|
||||
value: "100+", label: "Interactive Models"},
|
||||
{
|
||||
value: "200+",
|
||||
label: "Ecosystems Analyzed",
|
||||
},
|
||||
value: "200+", label: "Ecosystems Analyzed"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Begin Your Exploration",
|
||||
href: "#explore",
|
||||
},
|
||||
text: "Begin Your Exploration", href: "#explore"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/concentrated-hipster-writes-notebook-information-he-hears-from-female-who-reads-news-from-internet-website-beautiful-black-girl-keyboards-laptop-computer_273609-44838.jpg",
|
||||
alt: "Student profile picture",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/concentrated-hipster-writes-notebook-information-he-hears-from-female-who-reads-news-from-internet-website-beautiful-black-girl-keyboards-laptop-computer_273609-44838.jpg", alt: "Student profile picture"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-female-scientist-with-safety-glasses-holding-test-tube_23-2148799315.jpg",
|
||||
alt: "Educator profile picture",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-female-scientist-with-safety-glasses-holding-test-tube_23-2148799315.jpg", alt: "Educator profile picture"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mature-grey-beard-businessman-wearing-casual-grey-jacket-looking-thru-tree-trunks-leaning-one-life-after-40-years-concept-problems-depression-middle-age-crisis_549566-1022.jpg",
|
||||
alt: "Researcher profile picture",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/mature-grey-beard-businessman-wearing-casual-grey-jacket-looking-thru-tree-trunks-leaning-one-life-after-40-years-concept-problems-depression-middle-age-crisis_549566-1022.jpg", alt: "Researcher profile picture"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-bearded-man-wearing-hat-park_23-2148203063.jpg",
|
||||
alt: "Wildlife professional profile picture",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-bearded-man-wearing-hat-park_23-2148203063.jpg", alt: "Wildlife professional profile picture"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-man-learning-virtual-classroom_23-2149200207.jpg",
|
||||
alt: "Young man learning in a virtual classroom",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-man-learning-virtual-classroom_23-2149200207.jpg", alt: "Young man learning in a virtual classroom"},
|
||||
]}
|
||||
avatarText="Join our global community of explorers"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-dolphin-with-vibrant-coloring_23-2151079106.jpg"
|
||||
@@ -138,29 +105,19 @@ export default function LandingPage() {
|
||||
mediaAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "AI-Powered Discovery",
|
||||
icon: Lightbulb,
|
||||
type: "text-icon", text: "AI-Powered Discovery", icon: Lightbulb,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Real-time Data",
|
||||
icon: Loader,
|
||||
type: "text-icon", text: "Real-time Data", icon: Loader,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "3D Immersion",
|
||||
icon: Box,
|
||||
type: "text-icon", text: "3D Immersion", icon: Box,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Global Community",
|
||||
icon: Users,
|
||||
type: "text-icon", text: "Global Community", icon: Users,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Uncharted Ecosystems",
|
||||
icon: Globe,
|
||||
type: "text-icon", text: "Uncharted Ecosystems", icon: Globe,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -173,17 +130,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 +150,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 +170,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 +194,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 +212,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 +238,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 +251,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 +267,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Join the Movement"
|
||||
title="Ready to Begin Your Exploration?"
|
||||
description="Connect with a world of knowledge. Whether you're a student, researcher, or curious mind, LifeAtlas X has something for everyone. Start your free trial or reach out to our team."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Free Trial",
|
||||
href: "#",
|
||||
},
|
||||
text: "Start Free Trial", href: "#"},
|
||||
{
|
||||
text: "Contact Sales",
|
||||
href: "#",
|
||||
},
|
||||
text: "Contact Sales", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -444,19 +287,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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user