هذا الالتزام موجود في:
Omar Ahmed
2025-10-01 01:10:54 +03:00
التزام 89b0955c24
16 ملفات معدلة مع 1768 إضافات و0 حذوفات

ثنائية
app/favicon.ico Normal file

ملف ثنائي غير معروض.

بعد

العرض:  |  الارتفاع:  |  الحجم: 25 KiB

26
app/globals.css Normal file
عرض الملف

@@ -0,0 +1,26 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}

29
app/layout.js Normal file
عرض الملف

@@ -0,0 +1,29 @@
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}

11
app/page.js Normal file
عرض الملف

@@ -0,0 +1,11 @@
export default function Home() {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-50 text-gray-900">
<h1 className="text-4xl font-bold mb-4">🚀 Welcome to My Next.js App</h1>
<p className="text-lg text-gray-700">
This is a clean starter template.
</p>
</div>
);
}