[dyad] Applied a strict black and white theme - wrote 3 file(s)

This commit is contained in:
[dyad]
2026-01-20 12:01:17 +01:00
parent e978708456
commit 29b7d57694
3 changed files with 13 additions and 13 deletions

View File

@@ -3,15 +3,15 @@ import { MetaForm } from "@/components/meta-form";
export default function Home() {
return (
<div className="grid grid-rows-[1fr_auto] items-center justify-items-center min-h-screen p-4 sm:p-8 font-[family-name:var(--font-geist-sans)] bg-gray-50 dark:bg-gray-900">
<div className="grid grid-rows-[1fr_auto] items-center justify-items-center min-h-screen p-4 sm:p-8 font-[family-name:var(--font-geist-sans)] bg-background">
<main className="flex flex-col gap-8 row-start-1 items-center w-full max-w-2xl">
<div className="text-center space-y-2">
<h1 className="text-3xl sm:text-4xl font-bold text-gray-800 dark:text-white">
<h1 className="text-3xl sm:text-4xl font-bold text-foreground">
Meta Tag Extractor
</h1>
<p className="text-gray-600 dark:text-gray-300">
<p className="text-muted-foreground">
Enter a URL to extract its meta title and description.
</p>
p>
</div>
<MetaForm />
</main>