adding stuff

This commit is contained in:
nate
2024-06-12 00:30:26 -04:00
parent 7064002fa8
commit 187768bbf2
15 changed files with 753 additions and 12 deletions

11
src/routes/+layout.svelte Normal file
View File

@@ -0,0 +1,11 @@
<nav>
<ul>
<li><h1>Welcome to CoFabricate</h1></li>
</ul>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/login">Sign In</a></li>
</ul>
</nav>
<slot></slot>

View File

@@ -1 +1,5 @@
<h1>Welcome to CoFabricate</h1>
<svelte:head>
<title>Decentralized Manufacturing</title>
</svelte:head>
<h1>Home</h1>

View File

@@ -0,0 +1,5 @@
<svelte:head>
<title>About</title>
</svelte:head>
<p>About page</p>

View File

@@ -0,0 +1,5 @@
<svelte:head>
<title>Log In</title>
</svelte:head>
<p>Log In</p>n