[dyad] Made footer separator full-width - wrote 2 file(s)

This commit is contained in:
[dyad]
2026-01-20 12:02:40 +01:00
parent 5125008ff2
commit c0bdf5fcf1
2 changed files with 14 additions and 12 deletions

View File

@@ -3,17 +3,19 @@ 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-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-foreground">
Meta Tag Extractor
</h1>
<p className="text-muted-foreground">
Enter a URL to extract its meta title and description.
</p>
<div className="flex flex-col min-h-screen p-4 sm:p-8 font-[family-name:var(--font-geist-sans)] bg-background">
<main className="flex-grow flex items-center justify-center">
<div className="flex flex-col gap-8 items-center w-full max-w-2xl">
<div className="text-center space-y-2">
<h1 className="text-3xl sm:text-4xl font-bold text-foreground">
Meta Tag Extractor
</h1>
<p className="text-muted-foreground">
Enter a URL to extract its meta title and description.
</p>
</div>
<MetaForm />
</div>
<MetaForm />
</main>
<Footer />
</div>