diff --git a/app/globals.css b/app/globals.css index 7bd7a93..fb6ba11 100644 --- a/app/globals.css +++ b/app/globals.css @@ -6,6 +6,8 @@ :root { --accent-primary: #f97316; --accent-secondary: #1e293b; + --dark:#18181b; + --light:#f3f4f6; } /* Works on Firefox */ * { @@ -36,6 +38,12 @@ .md-notFound { height: calc(100vh - 350px); } + .shadow-light{ + box-shadow: 0px 30px 30px -6px var(--light); + } + .shadow-dark{ + box-shadow: 0px 40px 40px -6px var(--dark); + } :is(:not(.dark) .text-accent)::selection { background-color: rgb(113 113 122 / var(--tw-bg-opacity)); diff --git a/components/Header.tsx b/components/Header.tsx index 1213d10..b0afec6 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -10,14 +10,49 @@ const Header = () => { const handleClick = () => { setShowMenu(prev => !prev); } + return ( -
- - - - -
+ <> +
+
+ + + + +
+ +
+
+ ) } -export default Header \ No newline at end of file +export default Header + + +const BlurdArea = () => { + return ( +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ) +} \ No newline at end of file diff --git a/components/SearchBox.tsx b/components/SearchBox.tsx index aa46b11..a6b6332 100644 --- a/components/SearchBox.tsx +++ b/components/SearchBox.tsx @@ -13,7 +13,7 @@ const SearchBox = () => { router.push(`/search?term=${input}`) } return ( -
+