feat: profile page

This commit is contained in:
2025-04-02 16:46:20 +03:00
parent f3c983be6f
commit 0843e4b20d
4 changed files with 36 additions and 10 deletions

View File

@@ -0,0 +1 @@
@reference "../index.scss";

12
src/pages/profile.tsx Normal file
View File

@@ -0,0 +1,12 @@
import Layout from "@/components/layout";
import { FunctionComponent } from "preact";
const ProfilePage: FunctionComponent = () => {
return (
<Layout>
<p>Profile</p>
</Layout>
);
};
export default ProfilePage;