feat: add Tools section with Lora font and Figma icons

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marco
2026-06-30 20:55:23 +00:00
parent b448f934a5
commit ed9d770889
6 changed files with 127 additions and 2 deletions
+8 -2
View File
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono, Playfair_Display, Caveat } from "next/font/google";
import { Geist, Geist_Mono, Playfair_Display, Caveat, Lora } from "next/font/google";
import "./globals.css";
import { Navbar } from "./components/Navbar";
@@ -25,6 +25,12 @@ const caveat = Caveat({
weight: ["700"],
});
const lora = Lora({
variable: "--font-lora",
subsets: ["latin"],
weight: ["600"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
@@ -38,7 +44,7 @@ export default function RootLayout({
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} ${playfair.variable} ${caveat.variable} h-full antialiased`}
className={`${geistSans.variable} ${geistMono.variable} ${playfair.variable} ${caveat.variable} ${lora.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<Navbar />