Bob AI: [SECTION ADD OPERATION]

You must create a COMPLETELY NEW sec
This commit is contained in:
2026-04-27 01:34:50 +03:00
parent 5731a4e501
commit 3b428bf5ed
2 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
"use client";
import BlogSimpleCards from '@/components/sections/blog/BlogSimpleCards';
export default function BlogSection() {
return (
<BlogSimpleCards
tag="Latest Insights"
title="Our Blog"
description="Stay updated with the latest in emotional intelligence and neuroscience."
items={[
{
category: "Neuroscience",
title: "The Science Behind Emotional Licensing",
excerpt: "Explore how our advanced resonance technology interfaces with neural pathways to deliver curated emotional states.",
authorName: "Dr. Sarah Chen",
authorImageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/professional-headshot-of-a-happy-custome-1777233973635-8ab8b67f.png",
date: "October 26, 2023",
imageSrc: "https://images.unsplash.com/photo-1581092910302-f37479369928?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
href: "#",
},
{
category: "Technology",
title: "Building the Future of Feelings: Our Tech Stack",
excerpt: "A deep dive into the innovative technologies powering Emotify's seamless emotional integration.",
authorName: "James Wilson",
authorImageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/professional-headshot-of-a-happy-custome-1777233973383-4f4896d8.png",
date: "October 19, 2023",
imageSrc: "https://images.unsplash.com/photo-1518770660439-4636190af367?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
href: "#",
},
{
category: "Well-being",
title: "The Impact of Curated Emotions on Daily Life",
excerpt: "Discover how precise emotional states can enhance productivity, creativity, and overall mental health.",
authorName: "Elena Rodriguez",
authorImageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/professional-headshot-of-a-happy-custome-1777233974133-d4570acb.png",
date: "October 12, 2023",
imageSrc: "https://images.unsplash.com/photo-1506126613403-4e2bd4dfd149?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
href: "#",
},
]}
primaryButton={{
text: "Read All Posts",
href: "#",
}}
/>
);
}

View File

@@ -8,6 +8,7 @@ import ProductVariantCards from '@/components/sections/product/ProductVariantCar
import InfoCardMarquee from '@/components/ui/InfoCardMarquee';
import TeamSection from '@/components/sections/team/TeamSection';
import StatsSection from '@/components/sections/other/StatsSection';
import { BlogSection } from '@/components/sections/blog/BlogSection';
export default function HomePage() {
return (
@@ -300,6 +301,10 @@ export default function HomePage() {
<div id="stats" data-section="stats">
<StatsSection />
</div>
<div id="blog" data-section="blog">
<BlogSection />
</div>
</>
);
}