Skip to content

Commit

Permalink
Merge pull request #116 from frontier777/nav_title
Browse files Browse the repository at this point in the history
Use WebsiteName from config in nav bar
  • Loading branch information
scosman authored Aug 6, 2024
2 parents 5d65e4d + dc7e99e commit f0d0516
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/(marketing)/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<script>
import { WebsiteName } from "./../../config"
import "../../app.css"
</script>

<div class="navbar bg-base-100 container mx-auto">
<div class="flex-1">
<a class="btn btn-ghost normal-case text-xl" href="/">SaaS Starter</a>
<a class="btn btn-ghost normal-case text-xl" href="/">{WebsiteName}</a>
</div>
<div class="flex-none">
<ul class="menu menu-horizontal px-1 hidden sm:flex font-bold text-lg">
Expand Down

0 comments on commit f0d0516

Please sign in to comment.