From 9bd9188921e9f09f1925c72a0ee09d2a2d37cb00 Mon Sep 17 00:00:00 2001 From: Ryan Freeman Date: Sat, 28 Sep 2024 19:09:50 +0100 Subject: [PATCH] Remove View component from regular pages --- app/about/page.tsx | 2 -- app/page.tsx | 1 - app/projects/page.tsx | 2 -- app/reading/page.tsx | 2 -- app/uses/page.tsx | 2 -- app/writing/page.tsx | 1 - 6 files changed, 10 deletions(-) diff --git a/app/about/page.tsx b/app/about/page.tsx index e88e4cb..3025c80 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -7,7 +7,6 @@ import {GitHubIcon, LinkedInIcon} from '@/components/icons/SocialIcons' import clsx from 'clsx' import me from '@/public/images/me.jpg' import awsCCPBadge from '@/public/images/aws-certified-cloud-practitioner-badge.png' -import {Views} from '@/components/ui/Views'; export const metadata = { title: 'About - Ryan Freeman', @@ -130,7 +129,6 @@ export default async function About() { - ) } \ No newline at end of file diff --git a/app/page.tsx b/app/page.tsx index 441f28d..8fa7c83 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -62,7 +62,6 @@ export default async function Home() { /> -
diff --git a/app/projects/page.tsx b/app/projects/page.tsx index 528f3e4..6b2be1a 100644 --- a/app/projects/page.tsx +++ b/app/projects/page.tsx @@ -4,7 +4,6 @@ import {SimpleLayout} from '@/components/layouts/SimpleLayout' import {Card} from '@/components/ui/Card' import {getPinnedRepos} from '@/lib/github' import {numberFormat} from '@/lib/numberFormat' -import {Views} from '@/components/ui/Views'; import React from 'react'; export const metadata = { @@ -56,7 +55,6 @@ export default async function Projects() { ))} - ) } diff --git a/app/reading/page.tsx b/app/reading/page.tsx index f695646..3e9fe1e 100644 --- a/app/reading/page.tsx +++ b/app/reading/page.tsx @@ -1,6 +1,5 @@ import {SimpleLayout} from '@/components/layouts/SimpleLayout' import {Card} from '@/components/ui/Card' -import {Views} from '@/components/ui/Views'; import React from 'react'; export const metadata = { @@ -86,7 +85,6 @@ export default async function Reading() { ))} - ) } diff --git a/app/uses/page.tsx b/app/uses/page.tsx index 1f103fe..4017546 100644 --- a/app/uses/page.tsx +++ b/app/uses/page.tsx @@ -2,7 +2,6 @@ import React, {ReactNode} from 'react' import {SimpleLayout} from '@/components/layouts/SimpleLayout' import {Card} from '@/components/ui/Card' import {Section} from '@/components/ui/Section' -import {Views} from '@/components/ui/Views'; export const metadata = { title: 'Uses - Ryan Freeman', @@ -117,7 +116,6 @@ export default function Uses() {
- ) } diff --git a/app/writing/page.tsx b/app/writing/page.tsx index 487f50f..332d2f4 100644 --- a/app/writing/page.tsx +++ b/app/writing/page.tsx @@ -49,7 +49,6 @@ export default async function Writing() { ))} - ) } \ No newline at end of file