diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
new file mode 100644
index 0000000..83ca096
--- /dev/null
+++ b/src/app/blog/page.tsx
@@ -0,0 +1,80 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import BlogCardThree from '@/components/sections/blog/BlogCardThree';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+
+export default function BlogPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index caf9793..e2ae6da 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -32,15 +32,17 @@ export default function LandingPage() {
@@ -61,7 +63,7 @@ export default function LandingPage() {
enableKpiAnimation={true}
buttons={[
{
- text: "Explore Services", href: "#features"},
+ text: "Explore Services", href: "/#features"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E665B6wm8CMNvYChmBhM1LZz9e/uploaded-1779487640172-yftlqhzn.jpg"
imageAlt="AI Business Solutions"
@@ -207,17 +209,19 @@ export default function LandingPage() {
{
title: "Links", items: [
{
- label: "Home", href: "#"},
+ label: "Home", href: "/"},
{
- label: "Services", href: "#features"},
+ label: "Services", href: "/#features"},
+ {
+ label: "Blog", href: "/blog"},
],
},
{
title: "Legal", items: [
{
- label: "Privacy", href: "#"},
+ label: "Privacy", href: "/#"},
{
- label: "Terms", href: "#"},
+ label: "Terms", href: "/#"},
],
},
]}