diff --git a/app/globals.css b/app/globals.css
index a2dc41e..b509448 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -1,8 +1,8 @@
@import "tailwindcss";
:root {
- --background: #ffffff;
- --foreground: #171717;
+ --background: #0a0a0a;
+ --foreground: #ededed;
}
@theme inline {
@@ -12,15 +12,17 @@
--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;
+ font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
+}
+
+@keyframes float {
+ 0%, 100% { transform: translateY(0px); }
+ 50% { transform: translateY(-10px); }
+}
+
+.animate-float {
+ animation: float 3s ease-in-out infinite;
}
diff --git a/app/layout.tsx b/app/layout.tsx
index f7fa87e..a2d64cb 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -13,8 +13,8 @@ const geistMono = Geist_Mono({
});
export const metadata: Metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
+ title: "AI News Hub - Превращаем новости в рабочие мануалы",
+ description: "Подписка на AI-новости и аналитику для разработчиков. Конвертируем любую новость в протестированный мануал для вас и вашего код-ассистента.",
};
export default function RootLayout({
diff --git a/app/page.tsx b/app/page.tsx
index 295f8fd..413cefb 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,63 +1,96 @@
-import Image from "next/image";
-
export default function Home() {
return (
-
-
-
-
-
- To get started, edit the page.tsx file.
-
-
- Looking for a starting point or more instructions? Head over to{" "}
-
- Templates
- {" "}
- or the{" "}
-
- Learning
- {" "}
- center.
-
+
+