Skip to content

Commit

Permalink
Merge pull request #16 from SubstantialCattle5/dev
Browse files Browse the repository at this point in the history
fix: seo update
  • Loading branch information
SubstantialCattle5 authored Oct 22, 2023
2 parents ca92805 + b47521e commit fb4a11a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
5 changes: 0 additions & 5 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import BlogCard from '@/components/content/blogs/BlogCard';
import ContentPlaceholder from '@/components/content/ContenPlaceholder';
import StyledInput from '@/components/content/form/StyledInput';
import Tag, { SkipNavTag } from '@/components/content/Tag';
import Seo from '@/components/Seo';

import { BlogFrontmatter } from '@/types/frontmatters';

Expand Down Expand Up @@ -78,10 +77,6 @@ const Page = () => {

return (
<>
<Seo
templateTitle='Blog'
description='Thoughts, mental models, and tutorials about front-end development. Rebuild your mental model so front-end development can be predictable.'
/>
<main>
<section className={clsx(isLoaded && 'fade-in-start')}>
<div className='layout py-12'>
Expand Down
2 changes: 0 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import ProjectCard from '@/components/content/projects/ProjectCard';
import ButtonLink from '@/components/links/ButtonLink';
import CustomLink from '@/components/links/CustomLink';
import UnstyledLink from '@/components/links/UnstyledLink';
import Seo from '@/components/Seo';

import { BlogFrontmatter, ProjectFrontmatter } from '@/types/frontmatters';

Expand All @@ -35,7 +34,6 @@ export default function HomePage() {
const populatedPosts = useInjectContentMeta('blog', 'featuredBlogs') || [];
return (
<>
<Seo />
<main>
<section
className={clsx(
Expand Down
5 changes: 0 additions & 5 deletions src/app/projects/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as React from 'react';
import Typewriter from 'typewriter-effect';

import ProjectPage from '@/components/content/projects/ProjectPage';
import Seo from '@/components/Seo';

import { ProjectFrontmatter } from '@/types/frontmatters';

Expand Down Expand Up @@ -47,10 +46,6 @@ export default function PagePage() {

return (
<>
<Seo
templateTitle='Projects'
description="Showcase of my projects on front-end development that I'm proud of."
/>
<main>
<ProjectPage {...data} />
</main>
Expand Down

0 comments on commit fb4a11a

Please sign in to comment.