Merge version_1 into main #1

Merged
development merged 2 commits from version_1 into main 2026-01-19 16:24:35 +00:00
2 changed files with 5 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import type { FooterColumn } from "@/components/shared/FooterColumns"; import type { FooterColumn } from "@/components/shared/FooterColumns";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { Github, Linkedin, Twitter } from "lucide-react";
type BlogPost = { type BlogPost = {
id: string; id: string;
@@ -134,9 +135,9 @@ export default function BlogPage() {
logoText="TechVision" logoText="TechVision"
copyrightText="© 2025 TechVision. All rights reserved." copyrightText="© 2025 TechVision. All rights reserved."
socialLinks={[ socialLinks={[
{ icon: "Github", href: "https://github.com", ariaLabel: "GitHub" }, { icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
{ icon: "Linkedin", href: "https://linkedin.com", ariaLabel: "LinkedIn" }, { icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: "Twitter", href: "https://twitter.com", ariaLabel: "Twitter" } { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }
]} ]}
/> />
</div> </div>

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';