chore: format codebase and move SectionAccordion to entities/Section
This commit is contained in:
@@ -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>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user