initial commit
This commit is contained in:
5
src/app/(site)/layout.tsx
Normal file
5
src/app/(site)/layout.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function SiteLayout({
|
||||
children,
|
||||
}: Readonly<{ children: React.ReactNode }>) {
|
||||
return <main>{children}</main>;
|
||||
}
|
||||
0
src/app/(site)/page.module.css
Normal file
0
src/app/(site)/page.module.css
Normal file
7
src/app/(site)/page.tsx
Normal file
7
src/app/(site)/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="text-3xl font-bold underline">
|
||||
Do not let us die in the dark night of this cold winter, Dave
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user