diff --git a/src/app/(private)/saved-themes/page.tsx b/src/app/(private)/saved-themes/page.tsx index e78b6f2..84c97f5 100644 --- a/src/app/(private)/saved-themes/page.tsx +++ b/src/app/(private)/saved-themes/page.tsx @@ -8,8 +8,7 @@ export default async function SavedThemesPage() { const themes = userId ? await getThemesByUserId(userId) : [] return ( -
-

Your Saved Themes

+
) diff --git a/src/app/discover/page.tsx b/src/app/discover/page.tsx index cc9efa1..80fca5c 100644 --- a/src/app/discover/page.tsx +++ b/src/app/discover/page.tsx @@ -7,8 +7,17 @@ export default async function DiscoverPage() { const themes = await getPublicThemes() return (
-
-
+
+
+
+ +
+

Discover new themes

+

+ made by the community +

+
+
diff --git a/src/app/globals.css b/src/app/globals.css index 000e9a8..f540d92 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3,7 +3,7 @@ @tailwind utilities; @layer base { :root { - --background: 0 0% 100%; + --background: 70 0% 96%; --foreground: 0 0% 3.9%; --card: 0 0% 100%; --card-foreground: 0 0% 3.9%; @@ -27,10 +27,10 @@ --chart-3: 197 37% 24%; --chart-4: 43 74% 66%; --chart-5: 27 87% 67%; - --radius: 0.5rem + --radius: 0.5rem; } .dark { - --background: 0 0% 3.9%; + --background: 70 0% 32%; --foreground: 0 0% 98%; --card: 0 0% 3.9%; --card-foreground: 0 0% 98%; @@ -53,7 +53,7 @@ --chart-2: 160 60% 45%; --chart-3: 30 80% 55%; --chart-4: 280 65% 60%; - --chart-5: 340 75% 55% + --chart-5: 340 75% 55%; } } @layer base { diff --git a/src/components/Discover.tsx b/src/components/Discover.tsx index 08ba1d6..f8a09a5 100644 --- a/src/components/Discover.tsx +++ b/src/components/Discover.tsx @@ -10,19 +10,11 @@ export default function Discover({ themes }: { themes: SavedTheme[] }) { const [selectedTheme, setSelectedTheme] = useState(themes[0]) return (
-
- -
-

Discover new themes

-

- made by the community -

-
-
-
+
-
+ +
{themes.map((theme) => ( { return ( -