chatgpt codex: told to spice up ui

This commit is contained in:
2025-12-28 00:33:35 +02:00
parent 6202f842b6
commit d12cf3b649
3 changed files with 91 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Geist, Geist_Mono, Space_Grotesk } from "next/font/google";
import "./globals.css";
import { TooltipProvider } from "@/components/ui/tooltip";
import { Toaster } from "@/components/ui/toaster";
@@ -20,6 +20,11 @@ const geistMono = Geist_Mono({
subsets: ["latin"]
});
const spaceGrotesk = Space_Grotesk({
variable: "--font-space-grotesk",
subsets: ["latin"]
});
export const metadata: Metadata = {
title: "Home | Roblox",
description:
@@ -44,12 +49,13 @@ export default function RootLayout({
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased overflow-x-hidden mocha`}
className={`${geistSans.variable} ${geistMono.variable} ${spaceGrotesk.variable} antialiased overflow-x-hidden mocha`}
>
<ReactQueryProvider>
<TooltipProvider>
<GameLaunchProvider>
<main>
<main className="relative min-h-screen z-10">
<div className="ambient-backdrop" aria-hidden="true" />
{/* <Image
src={"/bg.png"}
width={1920}