Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
dist
tmp
/out-tsc
.turbo

# dependencies
node_modules
Expand Down
Binary file added apps/lumeweb.com/src/assets/icons/favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions apps/lumeweb.com/src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import opengraph from "/src/assets/opengraph.png";
import Navbar from "../components/Layout/Navbar.astro";
import Footer from "../components/Layout/Footer.astro";
import JoinCommunity from "../components/Layout/JoinCommunity.astro";
import favicon from "/src/assets/icons/favicon.ico";

export interface Props {
view: string;
Expand Down Expand Up @@ -44,6 +45,7 @@ const url = "https://lumeweb.com";
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={opengraph.src} />
<link rel="sitemap" href="/sitemap-index.xml" />
<link rel="icon" type="image/svg" href={favicon}>
<!-- Matomo -->
<script is:inline>
var _paq = (window._paq = window._paq || []);
Expand Down