adding stuff
This commit is contained in:
11
src/routes/+layout.svelte
Normal file
11
src/routes/+layout.svelte
Normal 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>
|
||||
@@ -1 +1,5 @@
|
||||
<h1>Welcome to CoFabricate</h1>
|
||||
<svelte:head>
|
||||
<title>Decentralized Manufacturing</title>
|
||||
</svelte:head>
|
||||
|
||||
<h1>Home</h1>
|
||||
5
src/routes/about/+page.svelte
Normal file
5
src/routes/about/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<svelte:head>
|
||||
<title>About</title>
|
||||
</svelte:head>
|
||||
|
||||
<p>About page</p>
|
||||
5
src/routes/login/+page.svelte
Normal file
5
src/routes/login/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<svelte:head>
|
||||
<title>Log In</title>
|
||||
</svelte:head>
|
||||
|
||||
<p>Log In</p>n
|
||||
Reference in New Issue
Block a user