Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-05-22 14:08:14 +00:00

View File

@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
@@ -31,6 +32,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Blog", id: "#blog" },
{ name: "Home", id: "#hero" },
{ name: "Services", id: "#services" },
{ name: "Why Us", id: "#why-us" },
@@ -40,6 +42,20 @@ export default function LandingPage() {
/>
</div>
<div id="blog" data-section="blog">
<BlogCardThree
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
title="Latest Book Features"
description="Explore the latest additions to our literary collection, complete with author spotlights and release dates."
blogs={[
{ id: "1", category: "Fantasy", title: "The Last Chronicles", excerpt: "A breathtaking journey through forgotten realms.", imageSrc: "http://img.b2bpic.net/free-photo/old-device-studio_23-2150756320.jpg", authorName: "Jane Doe", authorAvatar: "", date: "Oct 24, 2023" },
{ id: "2", category: "Sci-Fi", title: "Nebula Dawn", excerpt: "An epic quest across star systems.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-books-versus-technology_23-2150063079.jpg", authorName: "John Smith", authorAvatar: "", date: "Oct 25, 2023" }
]}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
title="Elevating Your Literary Voice"
@@ -155,4 +171,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}