aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/Header.tsx
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-05-31 20:26:37 -0400
committerAndrew Lee <andrew@alee14.me>2025-05-31 20:26:37 -0400
commit1ea35f5ec0a43fbf8331ef8afa9dc2266e91eed6 (patch)
tree4280c894c383b5fc88deb0fc351b560feb4e028c /src/app/components/Header.tsx
parent73e957caaf661900f1712c4217a73bb4fcfaa34b (diff)
downloadalure-post-1ea35f5ec0a43fbf8331ef8afa9dc2266e91eed6.tar.gz
alure-post-1ea35f5ec0a43fbf8331ef8afa9dc2266e91eed6.tar.bz2
alure-post-1ea35f5ec0a43fbf8331ef8afa9dc2266e91eed6.zip
Add tracking page
Diffstat (limited to 'src/app/components/Header.tsx')
-rw-r--r--src/app/components/Header.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/app/components/Header.tsx b/src/app/components/Header.tsx
new file mode 100644
index 0000000..56bf984
--- /dev/null
+++ b/src/app/components/Header.tsx
@@ -0,0 +1,17 @@
+interface HeaderProps {
+ title: string;
+ description: string;
+}
+
+const Header = ({title, description}: HeaderProps) => {
+ return (
+ <div className="bg-center bg-no-repeat bg-[url('/jumbotron.webp')] bg-gray-700 bg-blend-multiply">
+ <div className="md:px-40 px-10 max-w-screen-xl text-left py-24 lg:py-10 space-y-3">
+ <h1 className="font-medium text-4xl">{title}</h1>
+ <h2 className="font-light text-lg">{description}</h2>
+ </div>
+ </div>
+ )
+}
+
+export default Header; \ No newline at end of file