From 3d9a8498fc8e93b96923b54729446e62342ab18f Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Tue, 17 Feb 2026 11:34:45 -0800 Subject: [PATCH] Remove simple landing page to use full marketing page - Delete app/page.tsx to let app/(marketing)/page.tsx be the root - Full marketing page has Hero, Features, Pricing, etc. - Much better for vibnai.com root domain Co-authored-by: Cursor --- app/page.tsx | 91 ---------------------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 app/page.tsx diff --git a/app/page.tsx b/app/page.tsx deleted file mode 100644 index 4be1156..0000000 --- a/app/page.tsx +++ /dev/null @@ -1,91 +0,0 @@ -"use client"; - -import Link from "next/link"; -import { Button } from "@/components/ui/button"; -import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; - -export default function HomePage() { - return ( -
-
- {/* Logo */} -
- Vib'n -
- - {/* Welcome Card */} - - - - Welcome to Vib'n - - - Your AI-powered development platform - - - -
-

- Track, manage, and deploy your AI-coded projects with ease. -

- -
- - -
🚀
-

Fast Deployment

-

- Deploy to Coolify with one click -

-
-
- - - -
🤖
-

AI-Powered

-

- Track AI coding sessions -

-
-
- - - -
📊
-

Analytics

-

- Monitor project progress -

-
-
-
- -
- - -
-
-
-
- - {/* Features */} -
-

✅ Self-hosted • ✅ Open source • ✅ Powered by Coolify

-
-
-
- ); -}