From 17271c1e521804f4483d9395e2fa68874eac4929 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Tue, 1 Apr 2025 19:37:28 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20Remove=20unused=20support?= =?UTF-8?q?=20icon=20and=20update=20header=20toolbar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The changes made in this commit include: 1. Removing the unused `support.svg` file from the `public` directory. 2. Updating the `toolbar.tsx` component in the `header` directory by removing the import and usage of the `supportPic` icon. These changes were made to clean up the codebase and remove unused assets, improving the overall maintainability of the project. --- app/blogpost/layout.tsx | 7 ------- components/header/toolbar.tsx | 1 - public/support.svg | 1 - 3 files changed, 9 deletions(-) delete mode 100644 public/support.svg diff --git a/app/blogpost/layout.tsx b/app/blogpost/layout.tsx index a9bb4ac..28b6b15 100644 --- a/app/blogpost/layout.tsx +++ b/app/blogpost/layout.tsx @@ -1,12 +1,5 @@ import "../globals.css"; -import Link from "next/link"; -import AnimatedLink from "@/components/animatedLink"; -import Image from "next/image"; - -import MainHeader from "@/components/header/main"; -import MainFooter from "@/components/footer/main"; - export default function RootLayout({ children }: { children: React.ReactNode }) { return (
diff --git a/components/header/toolbar.tsx b/components/header/toolbar.tsx index 1f4cfb4..78b79e4 100644 --- a/components/header/toolbar.tsx +++ b/components/header/toolbar.tsx @@ -5,7 +5,6 @@ import Link from 'next/link'; import globePic from '../../public/globe.svg'; import emailPic from '../../public/email.svg'; import rssPic from '../../public/rss-feed.svg'; -import supportPic from '../../public/support.svg'; import settingsPic from '../../public/settings.svg'; import AnimatedLink from '../animatedLink'; diff --git a/public/support.svg b/public/support.svg deleted file mode 100644 index 963e56c..0000000 --- a/public/support.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file