diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 7e8c61e..87e31f7 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -1,11 +1,11 @@
-use client";
+"use client";
-import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { useBlogPosts } from "@/hooks/useBlogPosts";
+import Link from 'next/link';
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
@@ -23,71 +23,69 @@ export default function BlogPage() {
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
-
-
-
+
+
+
+ {isLoading ? (
+
+ ) : (
+
+
+ )}
- {isLoading ? (
-
- ) : (
-
-
-
- )}
-
-
-
+
);
}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 056d201..9866ddf 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,8 +1,6 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
@@ -31,11 +29,9 @@ export default function RootLayout({
}>) {
return (
-
-
{children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d4a1c70..89febbc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,6 +9,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia';
+import Link from 'next/link';
export default function LandingPage() {
return (
@@ -28,11 +29,11 @@ export default function LandingPage() {
@@ -44,7 +45,7 @@ export default function LandingPage() {
description="Experience the warmth of homemade traditions with our freshly baked breads, pastries, and savory delights, crafted with love and authentic recipes."
background={{ variant: "plain" }}
imagePosition="right"
- imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg?_wi=1"
+ imageSrc="https://img.b2bpic.net/free-photo/white-cheese-bread-with-eggs_140725-3991.jpg"
imageAlt="Freshly baked Ukrainian bread on a rustic table"
mediaAnimation="slide-up"
buttons={[
@@ -58,7 +59,7 @@ export default function LandingPage() {