Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix empty content #143

Merged
merged 2 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions apps/www/src/config/marketing.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { MarketingConfig } from "@/types";
import { siteConfig } from "./site";

export const marketingConfig: MarketingConfig = {
mainNav: [
Expand All @@ -9,11 +10,7 @@ export const marketingConfig: MarketingConfig = {
},
{
title: "Changelog",
href: "/changelog",
},
{
title: "Blog",
href: "/blog",
href: `${siteConfig.links.github}/releases`,
},
{
title: "About",
Expand Down
7 changes: 4 additions & 3 deletions apps/www/src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ import { siteConfig } from "@/config/site";
href="https://linkedin.com/in/richardgill3">Richard Gill</a
>.
<br />
<br />If you have any questions or just want to chat you can reach me
via email <a class="link" href="mailto:[email protected]"
<br />If you have any questions or just want to say hi, you can reach
me on <a class="link" href={siteConfig.links.discord}>discord</a> or via
email <a class="link" href="mailto:[email protected]"
>[email protected]</a
> or <a class="link" href={siteConfig.links.discord}>discord</a>.
>.
</p>
</div>
</section>
Expand Down
Loading