small fixes, changed font

This commit is contained in:
Adam Cała
2023-11-09 19:13:01 +01:00
parent 2b213c9ce1
commit d3ea56c8e9
7 changed files with 71 additions and 19 deletions

View File

@@ -1,5 +1,7 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Zilla_Slab_Highlight } from "next/font/google";
import { Zen_Tokyo_Zoo } from "next/font/google";
import "./globals.css";
import Stars from "@/components/stars";
import Footer from "@/components/footer";
@@ -8,6 +10,14 @@ import Loading from "./loading";
import Link from "next/link";
const inter = Inter({ subsets: ["latin"] });
const zilla_slab_highlight = Zilla_Slab_Highlight({
weight: "700",
subsets: ["latin"],
});
const zen_tokyo_zoo = Zen_Tokyo_Zoo({
weight: "400",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
@@ -23,7 +33,14 @@ export default function RootLayout({
<html lang="en">
<body className={inter.className}>
<Link href={"/"}>
<h1 className="fixed text-white top-0 z-50 m-5 text-5xl">J4roid</h1>
<div className="fixed text-white top-0 z-50 m-5 text-8xl flex flex-row gap-1">
<h1
className={`${zilla_slab_highlight.className} text-stachowiak-green-950`}
>
J4
</h1>
<h1 className={`${zen_tokyo_zoo.className} text-8xl`}>studio</h1>
</div>
</Link>
<Suspense fallback={<Loading />}>{children}</Suspense>
<Footer />