feat: add logo

This commit is contained in:
Oleg Proskurin 2025-10-01 22:39:22 +07:00
parent fde488d471
commit 086eedc8ac
2 changed files with 11 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 KiB

View File

@ -1,6 +1,7 @@
'use client';
import { useState, FormEvent } from 'react';
import Image from 'next/image';
export default function Home() {
const [email, setEmail] = useState('');
@ -29,9 +30,16 @@ export default function Home() {
{/* Header */}
<header className="relative z-10 border-b border-white/10 backdrop-blur-sm">
<nav className="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
<div className="text-2xl font-bold bg-gradient-to-r from-purple-400 to-cyan-400 bg-clip-text text-transparent">
Banatie
<nav className="max-w-7xl mx-auto px-6 py-3 flex justify-between items-center h-16">
<div className="h-full flex items-center">
<Image
src="/banatie-logo-horisontal.png"
alt="Banatie Logo"
width={150}
height={40}
priority
className="h-full w-auto object-contain"
/>
</div>
<a
href="#waitlist"