From 3e22e0a168d2641541d07257feefd8c99abb4ddf Mon Sep 17 00:00:00 2001 From: konrad-enlaye Date: Thu, 4 Dec 2025 16:33:06 -0500 Subject: [PATCH] feat: clear initial content --- src/app/layout.tsx | 5 ---- src/app/page.tsx | 74 ++-------------------------------------------- 2 files changed, 2 insertions(+), 77 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..d7f0308 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,3 @@ -import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; @@ -12,10 +11,6 @@ const geistMono = Geist_Mono({ subsets: ["latin"], }); -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", -}; export default function RootLayout({ children, diff --git a/src/app/page.tsx b/src/app/page.tsx index ff6d026..c463412 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,73 +1,3 @@ -import Image from "next/image"; - -import { db, users } from "@/db"; - -async function getUsers() { - return await db.select().from(users); -} - -export default async function Home() { - const users = await getUsers(); - return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. -

-

- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -

-
-
- - Vercel logomark - Deploy Now - -
{JSON.stringify(users, null, 2)}
- - Documentation - -
-
-
- ); +export default function Home() { + return

Files

; }