From 85daaa37e9dc2b4652076b089ccdcb9e6dcbd79c Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Thu, 29 Jan 2026 20:18:55 -0500 Subject: [PATCH] make pretty --- src/App.tsx | 10 +++++----- src/Layout.tsx | 2 +- src/components/HackerNews.tsx | 2 +- src/components/SearchBar.tsx | 12 ++++++++---- src/components/ServiceGrid.tsx | 2 +- src/components/Weather.tsx | 2 +- src/index.css | 4 ++++ 7 files changed, 21 insertions(+), 13 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index f9de999..2e2c2b1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -17,26 +17,26 @@ export function App() {
{" "} -

Weather

+

Weather

-

+

Hacker News

-

+

Websites

-

+

Public Apps

-

+

Tailnet Apps

diff --git a/src/Layout.tsx b/src/Layout.tsx index c75672f..7889d1f 100644 --- a/src/Layout.tsx +++ b/src/Layout.tsx @@ -2,7 +2,7 @@ import "./index.css"; export default function Layout({ children }: { children: React.ReactNode }) { return ( -
+
{/*

cute.haus

*/} diff --git a/src/components/HackerNews.tsx b/src/components/HackerNews.tsx index e38f957..a651be7 100644 --- a/src/components/HackerNews.tsx +++ b/src/components/HackerNews.tsx @@ -20,7 +20,7 @@ export function HackerNews() { } return ( -
+
    {stories.map((story) => (
  • diff --git a/src/components/SearchBar.tsx b/src/components/SearchBar.tsx index 1d02bd1..1abad21 100644 --- a/src/components/SearchBar.tsx +++ b/src/components/SearchBar.tsx @@ -14,7 +14,7 @@ export function SearchBar() { return (
    { e.preventDefault(); if (query.trim()) { @@ -28,10 +28,14 @@ export function SearchBar() { onChange={(e) => setEngine(engines.find((eng) => eng.name === e.target.value)!) } - className="px-3 py-2 bg-zinc-900 border border-zinc-600 rounded text-white focus:outline-none focus:border-zinc-500" + className="px-3 py-2 bg-white/10 border border-white/20 rounded-lg text-white focus:outline-none focus:border-white/40" > {engines.map((eng) => ( - ))} @@ -41,7 +45,7 @@ export function SearchBar() { value={query} onChange={(e) => setQuery(e.target.value)} placeholder="Search..." - className="flex-1 px-3 py-2 bg-zinc-900 border border-zinc-600 rounded text-white placeholder-zinc-500 focus:outline-none focus:border-zinc-500" + className="flex-1 px-3 py-2 bg-white/10 border border-white/20 rounded-lg text-white placeholder-white/50 focus:outline-none focus:border-white/40" />
diff --git a/src/components/ServiceGrid.tsx b/src/components/ServiceGrid.tsx index f650535..74347b0 100644 --- a/src/components/ServiceGrid.tsx +++ b/src/components/ServiceGrid.tsx @@ -49,7 +49,7 @@ export default function ServiceGrid({
{service.icon && ( diff --git a/src/components/Weather.tsx b/src/components/Weather.tsx index b526eb6..a23a286 100644 --- a/src/components/Weather.tsx +++ b/src/components/Weather.tsx @@ -65,7 +65,7 @@ export function Weather() { } return ( -
+
{getWeatherIcon(weather.shortForecast, "w-12 h-12 text-zinc-300")}
diff --git a/src/index.css b/src/index.css index f1d8c73..f6ead4a 100644 --- a/src/index.css +++ b/src/index.css @@ -1 +1,5 @@ @import "tailwindcss"; + +body { + background: #18181b; +} -- 2.51.2