Updated files

This commit is contained in:
2025-08-06 19:06:05 +02:00
parent 0c993266bd
commit f1a3909ee4
2 changed files with 6 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next"
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
experimental: { experimental: {
useCache: true useCache: true
} }
}; }
export default nextConfig; export default nextConfig

View File

@@ -1,11 +1,11 @@
export default function HomePage() { export default function HomePage() {
return ( return (
<div className="min-h-screen flex items-center justify-center bg-background"> <div className="flex justify-center items-center min-h-screen bg-background">
<div className="text-center space-y-4"> <div className="space-y-4 text-center">
<h1 className="text-4xl font-bold text-foreground"> <h1 className="text-4xl font-bold text-foreground">
Linker Linker
</h1> </h1>
<p className="text-lg text-muted-foreground max-w-md"> <p className="max-w-md text-lg text-muted-foreground">
Transform long URLs into short, shareable links. Perfect for social media, emails, and anywhere you need clean, manageable links. Transform long URLs into short, shareable links. Perfect for social media, emails, and anywhere you need clean, manageable links.
</p> </p>
</div> </div>