From dbf7121a43d3efdd7161fdbe06069bc9109705ba Mon Sep 17 00:00:00 2001 From: Till JS Date: Sat, 28 Mar 2026 21:11:53 +0100 Subject: [PATCH] fix(landing): remove gaps, rounded corners, and heading from apps grid Clean brick layout: no spacing between cells, square corners, no title/subtitle. Just the grid directly after navbar. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../apps/landing/src/pages/apps/index.astro | 46 ++++++------------- 1 file changed, 14 insertions(+), 32 deletions(-) diff --git a/apps/manacore/apps/landing/src/pages/apps/index.astro b/apps/manacore/apps/landing/src/pages/apps/index.astro index 484ab8cd8..33680c8a5 100644 --- a/apps/manacore/apps/landing/src/pages/apps/index.astro +++ b/apps/manacore/apps/landing/src/pages/apps/index.astro @@ -2,9 +2,6 @@ import Layout from '../../layouts/Layout.astro'; import Navbar from '../../components/navigation/Navbar.astro'; import Footer from '../../components/navigation/Footer.astro'; -import Container from '../../components/layout/Container.astro'; -import Heading from '../../components/typography/Heading.astro'; -import Text from '../../components/typography/Text.astro'; const apps = [ // AI-Powered @@ -45,29 +42,20 @@ const apps = [
- -
- Alle Apps - - Ein Account, {apps.length} Apps. - -
- -
- {apps.map((app) => ( - -
{app.emoji}
- {app.name} - {app.tagline} -
- ))} -
-
+
+ {apps.map((app) => ( + +
{app.emoji}
+ {app.name} + {app.tagline} +
+ ))} +
@@ -76,36 +64,30 @@ const apps = [