aboutsummaryrefslogtreecommitdiff
path: root/src/components/GlassHeader.tsx
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2025-09-23 01:46:55 -0400
committersotech117 <michael_foiani@brown.edu>2025-09-23 01:46:55 -0400
commit3a712982307391ae1196f50e252cb37ed5f67ccb (patch)
tree279aa2d97198a08aef2eb1c80bc5008763eb98da /src/components/GlassHeader.tsx
parentc5547dc1ba827a4256fbe1ed08bda61f8c660815 (diff)
add hero and get-started page
Diffstat (limited to 'src/components/GlassHeader.tsx')
-rw-r--r--src/components/GlassHeader.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/GlassHeader.tsx b/src/components/GlassHeader.tsx
new file mode 100644
index 0000000..fd5a5aa
--- /dev/null
+++ b/src/components/GlassHeader.tsx
@@ -0,0 +1,11 @@
+export default function GlassHeader() {
+ return (
+ <div className="w-full bg-white/30 backdrop-blur-lg shadow-md shadow-gray-700/10">
+ <div className="container mx-auto px-6 py-4">
+ <h1 className="text-2xl font-semibold text-gray-900">
+ Sensible Scholars
+ </h1>
+ </div>
+ </div>
+ );
+}