diff --git a/public/images/hero-bg.jpg b/public/images/hero-bg.jpg new file mode 100644 index 0000000..4cf5e97 Binary files /dev/null and b/public/images/hero-bg.jpg differ diff --git a/public/images/logo.svg b/public/images/logo.svg new file mode 100644 index 0000000..bda61a3 --- /dev/null +++ b/public/images/logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/app/components/Hero.tsx b/src/app/components/Hero.tsx index 8d7ad5a..7f98fe9 100644 --- a/src/app/components/Hero.tsx +++ b/src/app/components/Hero.tsx @@ -1,26 +1,39 @@ -import Image from 'next/image' +import Image from "next/image"; export default function Hero() { - return ( -
- Балканское море -
{/* Оверлей для читаемости */} -
-

Аренда яхт в Балканах

-

Путешествуйте с Marine Travel

-
- {/* Поисковая форма: используйте shadcn input и button */} - - - -
-
-
- ) -} \ No newline at end of file + return ( +
+ Море +
{" "} + {/* Оверлей для читаемости */} +
+

+ Аренда яхт в Балканах +

+

Путешествуйте с Marine Travel

+
+ {/* Поисковая форма: используйте shadcn input и button */} + + + +
+
+
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 56c71bf..6b46bb1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,8 +7,8 @@ import Footer from "@/components/layout/Footer"; const inter = Inter({ subsets: ["latin", "cyrillic"] }); // Поддержка русского export const metadata: Metadata = { - title: "Marine Travel - Аренда яхт в Балканах", - description: "Прокат яхт и морские прогулки в Балканах", + title: "Marine Travel - Аренда яхт в Балаклаве", + description: "Прокат яхт и морские прогулки в Балаклаве", }; export default function RootLayout({ diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx index 34f4e68..ee4caae 100644 --- a/src/components/layout/Header.tsx +++ b/src/components/layout/Header.tsx @@ -9,14 +9,14 @@ import Link from "next/link"; export default function Header() { return ( -
+
Marine Travel diff --git a/tailwind.config.js b/tailwind.config.js index 2861406..b6897e4 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -6,11 +6,7 @@ module.exports = { ], theme: { extend: { - colors: { - primary: "#00A8A8", // Теал для акцентов, как в макете - secondary: "#FFFFFF", // Белый для текста - background: "#F8F8F8", // Светлый фон - }, + colors: {}, fontFamily: { sans: ["Inter", "sans-serif"], // Современный шрифт, похожий на макет },