From cd42a191f966ba95af61d01f787484ec7773e948 Mon Sep 17 00:00:00 2001 From: StanisLove Date: Wed, 5 Nov 2025 23:50:34 +0300 Subject: [PATCH] feat: new marketing page --- package.json | 2 +- src/app/(frontend)/layout.tsx | 10 +-- src/app/(frontend)/page.tsx | 137 ++++++++++++++++++++++++++++------ 3 files changed, 120 insertions(+), 29 deletions(-) diff --git a/package.json b/package.json index 93c090d..a3b5b53 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "@types/node": "^20", "@types/react": "18.2.48", "@types/react-dom": "18.2.18", - "eslint": "^9", + "eslint": "^8.57.0", "eslint-config-next": "14.2.18", "tailwindcss": "^4", "tw-animate-css": "^1.4.0", diff --git a/src/app/(frontend)/layout.tsx b/src/app/(frontend)/layout.tsx index fa490f2..cc6cc3c 100644 --- a/src/app/(frontend)/layout.tsx +++ b/src/app/(frontend)/layout.tsx @@ -1,10 +1,10 @@ import type { Metadata } from "next"; -import { Fira_Sans } from "next/font/google"; +import { Roboto_Flex } from "next/font/google"; import "./globals.css"; -const firaSans = Fira_Sans({ - variable: "--font-fira-sans", - weight: ["400", "500", "600", "700", "100", "200", "300", "800", "900"], +const robotoFlex = Roboto_Flex({ + variable: "--font-roboto-flex", + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], subsets: ["latin", "cyrillic"], }); @@ -20,7 +20,7 @@ export default function RootLayout({ }>) { return ( - {children} + {children} ); } diff --git a/src/app/(frontend)/page.tsx b/src/app/(frontend)/page.tsx index 415a542..e97fd21 100644 --- a/src/app/(frontend)/page.tsx +++ b/src/app/(frontend)/page.tsx @@ -1,46 +1,137 @@ "use client"; import { motion } from "framer-motion"; +import { Server, Code } from "lucide-react"; export default function Home() { return ( -
-
+
+
- Tungulov.space + Tungulov.space Избавляем вас от головной боли разработки - -

- Сконцентрируйтесь на бизнесе, а мы позаботимся о продукте -

-
+
+ + + + + +
+ + +
+ + Давайте приступим к воплощению вашей идеи + + + + + + +

+ Напишите о вашем проекте +

+

+ и уже через пару мгновений протестируйте демо +

+
+
+ + + + +
+
);