chore: format codebase and move SectionAccordion to entities/Section

This commit is contained in:
Ilia Mashkov
2026-04-23 20:52:43 +03:00
parent 8aff27f8ac
commit 1d333fd945
73 changed files with 1201 additions and 1153 deletions
+5 -8
View File
@@ -1,6 +1,6 @@
'use client'
'use client';
import { Button } from '$shared/ui'
import { Button } from '$shared/ui';
/**
* Fixed bottom utility bar with contact info and CV download.
@@ -10,7 +10,7 @@ export function UtilityBar() {
* Handles CV download action.
*/
function handleDownloadCV() {
console.log('Downloading CV...')
console.log('Downloading CV...');
}
return (
@@ -18,10 +18,7 @@ export function UtilityBar() {
<div className="max-w-[2560px] mx-auto px-6 md:px-12 lg:px-16 py-4 flex items-center justify-between">
<div className="flex items-center gap-4">
<span className="text-sm uppercase tracking-wider">Contact</span>
<a
href="mailto:hello@allmy.work"
className="text-base hover:text-burnt-oxide transition-colors"
>
<a href="mailto:hello@allmy.work" className="text-base hover:text-burnt-oxide transition-colors">
hello@allmy.work
</a>
</div>
@@ -30,5 +27,5 @@ export function UtilityBar() {
</Button>
</div>
</div>
)
);
}