Add custom font utilities for Fluxgore and Gotham Pro

- Introduced local font loading for Fluxgore with italic style.
- Added comprehensive font definitions for Gotham Pro, including various weights and styles (black, bold, light, medium, and regular).
- Organized font paths for better maintainability and clarity.
This commit is contained in:
2025-07-16 14:17:57 +09:00
parent 8011550ae8
commit 82dea63163
24 changed files with 604 additions and 107 deletions
+11 -3
View File
@@ -1,9 +1,17 @@
import Cover from "@/components/Cover";
import Info from "@/components/Info";
import Navbar from "@/components/Navbar";
import Video from "@/components/Video";
export default function Home() {
return (
<main className="flex-col min-h-full">
<Cover />
</main>
<>
<Navbar />
<main className="flex-col min-h-full">
<Cover />
<Info />
<Video />
</main>
</>
);
}