feat: add Hero section, fix logo with Caveat font + brush stroke SVG

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marco
2026-06-30 19:15:32 +00:00
parent de924cae2d
commit 601507df1d
4 changed files with 109 additions and 69 deletions
+14 -2
View File
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Geist, Geist_Mono, Playfair_Display, Caveat } from "next/font/google";
import "./globals.css";
import { Navbar } from "./components/Navbar";
@@ -13,6 +13,18 @@ const geistMono = Geist_Mono({
subsets: ["latin"],
});
const playfair = Playfair_Display({
variable: "--font-playfair",
subsets: ["latin"],
weight: ["700", "800"],
});
const caveat = Caveat({
variable: "--font-caveat",
subsets: ["latin"],
weight: ["700"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
@@ -26,7 +38,7 @@ export default function RootLayout({
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
className={`${geistSans.variable} ${geistMono.variable} ${playfair.variable} ${caveat.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<Navbar />