improve fonts and UI
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Bebas_Neue, JetBrains_Mono, Lora } from "next/font/google";
|
||||
import { Bebas_Neue, JetBrains_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import GridCanvas from "@/components/GridCanvas";
|
||||
|
||||
@@ -15,12 +15,6 @@ const jetbrains = JetBrains_Mono({
|
||||
weight: ["400", "500"],
|
||||
});
|
||||
|
||||
const lora = Lora({
|
||||
variable: "--font-lora",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "500"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Achraf Achkari — Technical Lead & Software Engineer",
|
||||
description:
|
||||
@@ -36,7 +30,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={`${bebas.variable} ${jetbrains.variable} ${lora.variable} h-full`}
|
||||
className={`${bebas.variable} ${jetbrains.variable} h-full`}
|
||||
>
|
||||
<body className="min-h-full flex flex-col antialiased" suppressHydrationWarning>
|
||||
<GridCanvas />
|
||||
|
||||
Reference in New Issue
Block a user