mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
Removing old SEO component from home.
This commit is contained in:
parent
6e85644bab
commit
552c194cd9
1 changed files with 3 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
|||
import type { PageData } from './$types';
|
||||
import Bandcamp from '$lib/components/bandcamp/index.svelte';
|
||||
import Articles from '$lib/components/articles/index.svelte';
|
||||
import SEO from '$lib/components/SEO.svelte';
|
||||
// import SEO from '$lib/components/SEO.svelte';
|
||||
import type { Album } from '$lib/types/album';
|
||||
import type { Article } from '$lib/types/article';
|
||||
import type { ArticlePageLoad } from './articles/[page]/+page.server';
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
let totalArticles: number;
|
||||
$: ({ albums, articlesData } = data);
|
||||
$: ({ articles, totalArticles } = articlesData);
|
||||
|
||||
|
||||
const userNames = {
|
||||
github: 'BradNut',
|
||||
linkedIn: 'bradley-shellnut',
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
};
|
||||
</script>
|
||||
|
||||
<SEO title="Home" />
|
||||
<!-- <SEO title="Home" /> -->
|
||||
|
||||
<div class="home">
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue