From 7e3dc4ace4c6b21bc68264dc76c8c442aec8031a Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Mon, 8 May 2023 14:45:55 -0600 Subject: standardize component structure more --- app/Header.tsx | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 app/Header.tsx (limited to 'app/Header.tsx') diff --git a/app/Header.tsx b/app/Header.tsx deleted file mode 100644 index b5749ba..0000000 --- a/app/Header.tsx +++ /dev/null @@ -1,43 +0,0 @@ -'use client' - -import React from 'react' -import Image from 'next/image' - -import { usePathname } from 'next/navigation' - -import header from '~/images/aurora-1197753.jpg' - -export default function Title() { - const pathname = usePathname() - - const isHomepage = pathname === '/' - - return ( -
- {isHomepage - ?

tempest.dev

- : tempest.dev - } - -
- -
-
- ) -} -- cgit 1.4.1