mirror of
https://github.com/Dokploy/website.git
synced 2026-06-26 17:45:54 +02:00
- Standardized import statements across various components to use double quotes for consistency. - Updated component files to ensure proper formatting and adherence to coding standards. - Enhanced overall code readability by aligning code structure and improving comment clarity. - Made minor adjustments to ensure all components follow the same coding conventions, improving maintainability.
22 lines
511 B
TypeScript
22 lines
511 B
TypeScript
import Link from "next/link";
|
|
|
|
export function SlimLayout() {
|
|
return (
|
|
<>
|
|
<main className="flex flex-auto items-center justify-center text-center">
|
|
<div>
|
|
<h1 className="mb-4 text-6xl font-semibold text-primary">404</h1>
|
|
<p className="mb-4 text-lg text-muted-foreground">Not found.</p>
|
|
<p className="mt-4 text-muted-foreground">
|
|
Go back to home
|
|
<Link href="/" className="text-primary">
|
|
Go back to home
|
|
</Link>
|
|
.
|
|
</p>
|
|
</div>
|
|
</main>
|
|
</>
|
|
);
|
|
}
|