feat(header): add toolbar component

This commit adds a new `HeaderToolbar` component to the `app/page.tsx` file. The toolbar includes links to the English and Russian versions of the blog. This change improves the user experience by providing easy access to the different language versions of the blog.
This commit is contained in:
AderKonstantin
2025-03-25 22:51:56 +03:00
parent a82eb21296
commit fb35ccee77
7 changed files with 11 additions and 14 deletions

View File

@@ -1,10 +1,5 @@
@import "tailwindcss";
@theme {
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
:root {
--background: #ffffff;
--foreground: #171717;
@@ -20,5 +15,5 @@
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
font-family: "Roboto Mono", monospace;
}