Skip to content

Commit

Permalink
chore: add empty project pages
Browse files Browse the repository at this point in the history
  • Loading branch information
tedbennett committed Apr 25, 2023
1 parent 4f67708 commit 3f181ba
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Expand Up @@ -8,7 +8,7 @@ const { title } = Astro.props;
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>{title}</title>
<title>{title ? `${title} | tedb.dev` : "tedb.dev"}</title>
</head>
<body class="bg-zinc-100 dark:bg-zinc-950 dark:text-white">
<Navbar />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Expand Up @@ -2,6 +2,6 @@
import Layout from "../layouts/Layout.astro";
---

<Layout title="tedb.dev">
<Layout>
<div class="container mx-auto"></div>
</Layout>
5 changes: 5 additions & 0 deletions src/pages/projects/fridgy.astro
@@ -0,0 +1,5 @@
---
import Layout from "../../layouts/Layout.astro";
---

<Layout title="fridgy"><div></div></Layout>
2 changes: 1 addition & 1 deletion src/pages/projects/index.astro
Expand Up @@ -3,7 +3,7 @@ import Card from "../../components/Card.astro";
import Layout from "../../layouts/Layout.astro";
---

<Layout title="projects | tedb.dev">
<Layout title="projects">
<div class="container px-4 sm:px-0 mx-auto py-5">
<h1 class="text-2xl font-semibold uppercase text-center sm:text-left">
projects
Expand Down
5 changes: 5 additions & 0 deletions src/pages/projects/kb.astro
@@ -0,0 +1,5 @@
---
import Layout from "../../layouts/Layout.astro";
---

<Layout title="kb"><div></div></Layout>
5 changes: 5 additions & 0 deletions src/pages/projects/kude.astro
@@ -0,0 +1,5 @@
---
import Layout from "../../layouts/Layout.astro";
---

<Layout title="kude"><div></div></Layout>
5 changes: 5 additions & 0 deletions src/pages/projects/pixee.astro
@@ -0,0 +1,5 @@
---
import Layout from "../../layouts/Layout.astro";
---

<Layout title="pixee"><div></div></Layout>
5 changes: 5 additions & 0 deletions src/pages/projects/versa.astro
@@ -0,0 +1,5 @@
---
import Layout from "../../layouts/Layout.astro";
---

<Layout title="versa"><div></div></Layout>

0 comments on commit 3f181ba

Please sign in to comment.