Skip to content

Commit

Permalink
fix: use base path for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
zenlex committed Feb 10, 2024
1 parent cd32e8a commit 7bd527d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { defineConfig } from 'astro/config';

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
site: 'https://tulsawebdevs.github.io',
base:'/website',
base: '/website',
integrations: [tailwind()],
});
5 changes: 3 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import Layout from '../layouts/Layout.astro';
import Card from '../components/Card.astro'
const baseUrl = import.meta.env.BASE_URL;
---

<Layout title="Tulsa Web Devs">
Expand All @@ -20,12 +21,12 @@ import Card from '../components/Card.astro'
/>
<Card
title="Suggest Topics or Projects"
href="/propose"
href="/website/propose"
body="Give us your best ideas and curiosities!"
/>
<Card
title="Vote on Topics and Projects"
href="/vote"
href="/website/vote"
body="We want input from you on what we program!"
/>
</nav>
Expand Down

0 comments on commit 7bd527d

Please sign in to comment.