Scafold Primary Page Routing and JSX

This commit is contained in:
2024-01-31 03:49:08 -08:00
parent e6cdf3a977
commit d4e157f1fa
11 changed files with 114 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
export function Blog(){
return (
<div>
<h1>Blog</h1>
<p>And a post</p>
</div>
)
}

View File

@@ -0,0 +1,8 @@
export function Home(){
return (
<div>
<h1>Home</h1>
<p>Welcome to my blog</p>
</div>
)
}

View File

@@ -0,0 +1,8 @@
export function Projects(){
return (
<div>
<h1>Projects</h1>
<p>Maybe pull from Gitea at some point</p>
</div>
)
}