SettingsPageLayout wrapper component

This commit is contained in:
Oliver Bryan
2025-12-28 00:26:11 +00:00
parent 22886335e1
commit 7a8b382b02
3 changed files with 30 additions and 20 deletions

View File

@@ -1,16 +1,10 @@
import { Link } from "react-router-dom";
import { SettingsPageLayout } from "@/components/settings-page-layout";
function Account() {
return (
<main className="w-full h-[100vh] flex flex-col items-start gap-4 p-4">
<h1 className="text-3xl font-600">Account</h1>
<p className="text-muted-foreground">Account page here</p>
<Link to="/" className="">
Go to Home
</Link>
</main>
<SettingsPageLayout title="Account">
<p className="font-400">Account page here</p>
</SettingsPageLayout>
);
}