Update src/app/about-us/page.tsx

This commit is contained in:
2026-06-10 14:54:38 +00:00
parent 271dc14c35
commit 4b85e78ec7

View File

@@ -8,6 +8,28 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import { Instagram, Linkedin, Twitter } from "lucide-react";
export default function AboutUsPage() {
const commonNavItems = [
{ 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 Ecosystems", id: "/#explore" },
{ name: "AI Species Comparison", id: "/ai-species-comparison" },
{ name: "Dinosaur Universe", id: "/dinosaur-universe" },
{ name: "Metrics", id: "/#metrics" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Partners", id: "/#partners" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact Us", id: "/contact-us" },
{ 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: "Blog", id: "/blog" }
];
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -24,27 +46,14 @@ export default function AboutUsPage() {
<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: "Team", id: "/team" },
{ 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" }
]}
navItems={commonNavItems}
logoSrc="http://img.b2bpic.net/free-vector/gradient-electronics-logos-pack_23-2148971491.jpg"
logoAlt="LifeAtlas X"
brandName="LifeAtlas X"
bottomLeftText="Global Community"
bottomRightText="explore@lifeatlasx.com"
button={{
text: "Begin Your Exploration", href: "#hero"}}
text: "Begin Your Exploration", href: "/#hero"}}
/>
</div>
@@ -84,4 +93,4 @@ export default function AboutUsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}