feat: add logo
This commit is contained in:
parent
fde488d471
commit
086eedc8ac
Binary file not shown.
|
After Width: | Height: | Size: 377 KiB |
|
|
@ -1,6 +1,7 @@
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { useState, FormEvent } from 'react';
|
import { useState, FormEvent } from 'react';
|
||||||
|
import Image from 'next/image';
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
const [email, setEmail] = useState('');
|
const [email, setEmail] = useState('');
|
||||||
|
|
@ -29,9 +30,16 @@ export default function Home() {
|
||||||
|
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<header className="relative z-10 border-b border-white/10 backdrop-blur-sm">
|
<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">
|
<nav className="max-w-7xl mx-auto px-6 py-3 flex justify-between items-center h-16">
|
||||||
<div className="text-2xl font-bold bg-gradient-to-r from-purple-400 to-cyan-400 bg-clip-text text-transparent">
|
<div className="h-full flex items-center">
|
||||||
Banatie
|
<Image
|
||||||
|
src="/banatie-logo-horisontal.png"
|
||||||
|
alt="Banatie Logo"
|
||||||
|
width={150}
|
||||||
|
height={40}
|
||||||
|
priority
|
||||||
|
className="h-full w-auto object-contain"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<a
|
<a
|
||||||
href="#waitlist"
|
href="#waitlist"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue