From 61d03adcec82829290042403821e96f1a3851254 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 19 Jan 2026 16:24:28 +0000 Subject: [PATCH 1/2] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index c9639ba..5b42ffb 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,6 +8,7 @@ import FooterCard from '@/components/sections/footer/FooterCard'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import type { FooterColumn } from "@/components/shared/FooterColumns"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import { Github, Linkedin, Twitter } from "lucide-react"; type BlogPost = { id: string; @@ -134,9 +135,9 @@ export default function BlogPage() { logoText="TechVision" copyrightText="© 2025 TechVision. All rights reserved." socialLinks={[ - { icon: "Github", href: "https://github.com", ariaLabel: "GitHub" }, - { icon: "Linkedin", href: "https://linkedin.com", ariaLabel: "LinkedIn" }, - { icon: "Twitter", href: "https://twitter.com", ariaLabel: "Twitter" } + { icon: Github, href: "https://github.com", ariaLabel: "GitHub" }, + { icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" }, + { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" } ]} /> From 239726ce1b31c8625831f89e1d069c5b2bed42dd Mon Sep 17 00:00:00 2001 From: development Date: Mon, 19 Jan 2026 16:24:29 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ab6000e..d14392b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';