mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
Remove commented SEO components.
This commit is contained in:
parent
c0eadcf458
commit
9477435802
7 changed files with 0 additions and 22 deletions
|
|
@ -10,7 +10,6 @@
|
|||
import Header from '$lib/components/header/index.svelte';
|
||||
import Footer from '$lib/components/footer/index.svelte';
|
||||
import Analytics from '$lib/components/analytics/index.svelte';
|
||||
// import SEO from '$lib/components/SEO.svelte';
|
||||
|
||||
NProgress.configure({
|
||||
// Full list: https://github.com/rstacruz/nprogress#configuration
|
||||
|
|
@ -46,8 +45,6 @@
|
|||
|
||||
<MetaTags {...metaTags} />
|
||||
|
||||
<!-- <SEO /> -->
|
||||
|
||||
<div class="wrapper">
|
||||
<Header />
|
||||
<main>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
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 type { Album } from '$lib/types/album';
|
||||
import type { Article } from '$lib/types/article';
|
||||
import type { ArticlePageLoad } from './articles/[page]/+page.server';
|
||||
|
|
@ -22,8 +21,6 @@
|
|||
};
|
||||
</script>
|
||||
|
||||
<!-- <SEO title="Home" /> -->
|
||||
|
||||
<div class="home">
|
||||
<div>
|
||||
<h1>Hello! I'm Bradley Shellnut.</h1>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
import Remix from '@iconify-icons/simple-icons/remix';
|
||||
import Svelte from '@iconify-icons/simple-icons/svelte';
|
||||
import TypeScript from '@iconify-icons/simple-icons/typescript';
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
import LazyImage from '$root/lib/components/LazyImage.svelte';
|
||||
import adventure from '$lib/assets/images/adventure.png?as=run:0';
|
||||
import tortie_derp from '$lib/assets/images/tortie_derp.jpg?as=run';
|
||||
|
|
@ -19,8 +18,6 @@
|
|||
import ExternalLink from '$root/lib/components/ExternalLink.svelte';
|
||||
</script>
|
||||
|
||||
<!-- <SEO title="About" /> -->
|
||||
|
||||
<div class="about">
|
||||
<div>
|
||||
<h1>About</h1>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
<script lang="ts">
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
import Pagination from "$lib/components/pagination/index.svelte";
|
||||
import type { Article } from "$root/lib/types/article";
|
||||
import type { PageData } from "./$types";
|
||||
|
|
@ -14,8 +13,6 @@
|
|||
$: seoTitle = `Tech Articles - Page ${currentPage} | Bradley Shellnut`;
|
||||
</script>
|
||||
|
||||
<!-- <SEO title={seoTitle} /> -->
|
||||
|
||||
<div class="pageStyles">
|
||||
<h1 style="margin-bottom: 2rem">Favorite Tech Articles</h1>
|
||||
<Pagination
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
<script lang="ts">
|
||||
import { createTabs, melt } from '@melt-ui/svelte';
|
||||
import GitHub from '@iconify-icons/simple-icons/github';
|
||||
// import SEO from '$lib/components/SEO.svelte';
|
||||
import Portfolio from '$lib/components/Portfolio.svelte';
|
||||
import personalSite from "$lib/assets/images/Bradley_Shellnut_New_Site.png?as=run";
|
||||
import weddingWebsite from "$lib/assets/images/Wedding_Website.png?as=run";
|
||||
|
|
@ -25,8 +24,6 @@
|
|||
];
|
||||
</script>
|
||||
|
||||
<!-- <SEO title="Portfolio" /> -->
|
||||
|
||||
<h1>Portfolio!</h1>
|
||||
<div use:melt={$root} class="root tab-group">
|
||||
<div use:melt={$list} aria-label="tabs portfolios" class="list tab-list">
|
||||
|
|
|
|||
|
|
@ -1,10 +1,7 @@
|
|||
<script lang="ts">
|
||||
import ExternalLink from "$root/lib/components/ExternalLink.svelte";
|
||||
// import SEO from "$root/lib/components/SEO.svelte";
|
||||
</script>
|
||||
|
||||
<!-- <SEO title="Privacy Blog" /> -->
|
||||
|
||||
<div>
|
||||
<h1>Privacy</h1>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
<script lang="ts">
|
||||
import Img from '@zerodevx/svelte-img';
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
import ExternalLink from '$lib/components/ExternalLink.svelte';
|
||||
import LazyImage from '$lib/components/LazyImage.svelte';
|
||||
import desktop from '$lib/assets/images/Desktop_so_clean.jpg?as=run';
|
||||
|
|
@ -9,8 +7,6 @@
|
|||
import PrivacyHardwareSoftware from '$lib/content/uses/privacy-hardware-software.md';
|
||||
</script>
|
||||
|
||||
<!-- <SEO title="Uses" /> -->
|
||||
|
||||
<div class="uses">
|
||||
<div>
|
||||
<h1>/Uses</h1>
|
||||
|
|
|
|||
Loading…
Reference in a new issue