Update src/app/blog/page.tsx

This commit is contained in:
2026-03-27 07:42:07 +00:00
parent 7155063fb5
commit 8d8f6a991b

View File

@@ -6,108 +6,57 @@ import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function BlogPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Geniuscale"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Geniuscale"
/>
</div>
<div id="blog" data-section="blog">
<BlogCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Latest Insights"
description="Explore expert strategies, industry trends, and actionable tips to level up your digital presence."
blogs={[
{
id: "1",
category: "SEO",
title: "The Future of Search in 2025",
excerpt: "How AI-driven search engines are changing the way we optimize for visibility.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/graphic-abstract-representation-of-digit-1774597273161-d6ba2e60.png?_wi=2",
authorName: "Jane Doe",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/a-portrait-of-a-diverse-happy-client-pro-1774597274731-345d16d4.png",
date: "March 12, 2025",
},
{
id: "2",
category: "PPC",
title: "Maximizing PPC Budget Efficiency",
excerpt: "Stop wasting ad spend. Here are 5 ways to optimize your campaigns today.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/futuristic-digital-marketing-analytics-i-1774597272938-5a400441.png?_wi=2",
authorName: "John Smith",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/a-portrait-of-a-tech-entrepreneur-smilin-1774597276581-882845d7.png",
date: "March 15, 2025",
},
]}
/>
</div>
<div id="blog" data-section="blog">
<BlogCardThree
title="Latest Insights"
description="Explore expert strategies, industry trends, and actionable tips to level up your digital presence."
blogs={[
{
id: "1", category: "SEO", title: "The Future of Search in 2025", excerpt: "How AI-driven search engines are changing the way we optimize for visibility.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/graphic-abstract-representation-of-digit-1774597273161-d6ba2e60.png", authorName: "Jane Doe", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/a-portrait-of-a-diverse-happy-client-pro-1774597274731-345d16d4.png", date: "March 12, 2025"},
{
id: "2", category: "PPC", title: "Maximizing PPC Budget Efficiency", excerpt: "Stop wasting ad spend. Here are 5 ways to optimize your campaigns today.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/futuristic-digital-marketing-analytics-i-1774597272938-5a400441.png", authorName: "John Smith", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWG5SrWWKEqjNXizW2I2dXKiv2/a-portrait-of-a-tech-entrepreneur-smilin-1774597276581-882845d7.png", date: "March 15, 2025"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Resources",
items: [
{
label: "Help Center",
href: "#",
},
{
label: "API Docs",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyrightText="© 2025 Geniuscale. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Resources", items: [{ label: "Help Center", href: "#" }, { label: "API Docs", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
copyrightText="© 2025 Geniuscale. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}