Add src/app/blog/page.tsx

This commit is contained in:
2026-06-10 14:40:17 +00:00
parent cd0a3a50ca
commit d96d3baccf

103
src/app/blog/page.tsx Normal file
View 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>
);
}