feat: Remove unused support icon and update header toolbar

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.
This commit is contained in:
AderKonstantin
2025-04-01 19:37:28 +03:00
parent 9ab9089f4f
commit 17271c1e52
3 changed files with 0 additions and 9 deletions

View File

@@ -1,12 +1,5 @@
import "../globals.css"; 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 }) { export default function RootLayout({ children }: { children: React.ReactNode }) {
return ( return (
<div className="m-auto text-base 2xl:w-4xl xl:w-3xl md:w-full"> <div className="m-auto text-base 2xl:w-4xl xl:w-3xl md:w-full">

View File

@@ -5,7 +5,6 @@ import Link from 'next/link';
import globePic from '../../public/globe.svg'; import globePic from '../../public/globe.svg';
import emailPic from '../../public/email.svg'; import emailPic from '../../public/email.svg';
import rssPic from '../../public/rss-feed.svg'; import rssPic from '../../public/rss-feed.svg';
import supportPic from '../../public/support.svg';
import settingsPic from '../../public/settings.svg'; import settingsPic from '../../public/settings.svg';
import AnimatedLink from '../animatedLink'; import AnimatedLink from '../animatedLink';

View File

@@ -1 +0,0 @@
<svg fill="none" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="#000"><path d="m7.824 5.937a1 1 0 0 0 .726-.312 2.042 2.042 0 0 1 2.835-.065 1 1 0 0 0 1.388-1.441 3.994 3.994 0 0 0 -5.674.13 1 1 0 0 0 .725 1.688z"/><path d="m17 7a7 7 0 1 0 -14 0 3 3 0 0 0 -3 3v2a3 3 0 0 0 3 3h1a1 1 0 0 0 1-1v-7a5 5 0 1 1 10 0v7.083a2.92 2.92 0 0 1 -2.917 2.917h-.083a2 2 0 0 0 -2-2h-1a2 2 0 0 0 -2 2v1a2 2 0 0 0 2 2h1a1.993 1.993 0 0 0 1.722-1h.361a4.92 4.92 0 0 0 4.824-4h.093a3 3 0 0 0 3-3v-2a3 3 0 0 0 -3-3z"/></g></svg>

Before

Width:  |  Height:  |  Size: 525 B