summary refs log tree commit diff
path: root/components/layout/Header.tsx
diff options
context:
space:
mode:
authorAshelyn Rose <git@tempest.dev>2023-05-08 14:45:55 -0600
committerAshelyn Rose <git@tempest.dev>2023-05-08 14:45:55 -0600
commit7e3dc4ace4c6b21bc68264dc76c8c442aec8031a (patch)
treec6ff346374e91913a12a8bb21da7fe8c29dd5429 /components/layout/Header.tsx
parent880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (diff)
standardize component structure more
Diffstat (limited to 'components/layout/Header.tsx')
-rw-r--r--components/layout/Header.tsx43
1 files changed, 43 insertions, 0 deletions
diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx
new file mode 100644
index 0000000..23ba4b2
--- /dev/null
+++ b/components/layout/Header.tsx
@@ -0,0 +1,43 @@
+'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 (
+    <header className={isHomepage ? 'homepage' : undefined}>
+      {isHomepage
+        ? <h1 className="siteTitle">tempest.dev</h1>
+        : <a href="/" className="siteTitle">tempest.dev</a>
+      }
+      <nav>
+        <a href="/about">about</a>
+        <a href="/posts">posts</a>
+        <a href="/contact">contact</a>
+      </nav>
+      <div className="headerBackground">
+        <Image
+          src={header}
+          alt=""
+          role="presentation"
+          fill={true}
+          sizes={`
+            (max-width: 2560) 100vw,
+            (max-width: 1920) 100vw,
+            (max-width: 1280) 100vw,
+            (max-width: 800) 100vw,
+            (max-width: 600) 100vw,
+          `}
+        />
+      </div>
+    </header>
+  )
+}