Update src/app/blog/page.tsx

This commit is contained in:
2026-01-19 16:24:28 +00:00
parent ab72c986a6
commit 61d03adcec

View File

@@ -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" }
]}
/>
</div>