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 = [