feat: initialize project structure with core UI components including Navbar, Footer, and Hero sections
This commit is contained in:
@@ -1,70 +1,139 @@
|
||||
import { Facebook, Instagram, Mail, MessageCircle } from 'lucide-react';
|
||||
import { Facebook, Instagram, Mail, MessageCircle } from "lucide-react";
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<footer className="bg-[#0f111a] border-t border-white/5 pt-16 pb-8 px-4 sm:px-6 lg:px-8">
|
||||
<footer className="bg-brutal-blue border-t-4 border-black pt-20 pb-10 px-4 sm:px-6 lg:px-8">
|
||||
<div className="max-w-7xl mx-auto">
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-16">
|
||||
|
||||
{/* Brand Col */}
|
||||
<div className="col-span-1 md:col-span-2">
|
||||
<div className="flex items-center gap-2 mb-6">
|
||||
<div className="w-8 h-8 rounded-lg bg-gradient-to-br from-indigo-500 to-purple-600 flex items-center justify-center">
|
||||
<span className="text-white font-bold text-lg font-display">ST</span>
|
||||
</div>
|
||||
<span className="font-display font-bold text-2xl text-white tracking-tight">
|
||||
Smart<span className="text-purple-400">Ticketing</span>
|
||||
<div className="flex items-center mb-6">
|
||||
<span className="font-display font-black text-4xl text-black tracking-tight uppercase bg-white brutal-border px-4 py-2 brutal-shadow-sm inline-block">
|
||||
SMART
|
||||
<span className="text-brutal-pink brutal-text-shadow">
|
||||
TICKET
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<p className="text-slate-400 text-sm leading-relaxed max-w-sm mb-8">
|
||||
Platform tiket konser dan event terpercaya di Indonesia. Pembayaran online lebih gampang.
|
||||
<p className="text-black font-bold text-lg leading-relaxed max-w-sm mb-8 p-4 bg-brutal-yellow brutal-border brutal-shadow-sm">
|
||||
PLATFORM TIKET KONSER DAN EVENT TERPERCAYA DI INDONESIA.
|
||||
PEMBAYARAN ONLINE LEBIH GAMPANG, CEPAT, DAN AMAN.
|
||||
</p>
|
||||
|
||||
|
||||
<div className="flex items-center gap-4">
|
||||
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center text-slate-400 hover:bg-purple-600 hover:text-white transition-all">
|
||||
<Facebook className="w-5 h-5" />
|
||||
<a
|
||||
href="#"
|
||||
className="w-14 h-14 bg-brutal-pink text-black flex items-center justify-center brutal-btn hover:bg-white transition-colors"
|
||||
>
|
||||
<Facebook className="w-6 h-6 stroke-[3]" />
|
||||
</a>
|
||||
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center text-slate-400 hover:bg-purple-600 hover:text-white transition-all">
|
||||
<Instagram className="w-5 h-5" />
|
||||
<a
|
||||
href="#"
|
||||
className="w-14 h-14 bg-brutal-yellow text-black flex items-center justify-center brutal-btn hover:bg-white transition-colors"
|
||||
>
|
||||
<Instagram className="w-6 h-6 stroke-[3]" />
|
||||
</a>
|
||||
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center text-slate-400 hover:bg-purple-600 hover:text-white transition-all">
|
||||
<Mail className="w-5 h-5" />
|
||||
<a
|
||||
href="#"
|
||||
className="w-14 h-14 bg-white text-black flex items-center justify-center brutal-btn hover:bg-brutal-pink transition-colors"
|
||||
>
|
||||
<Mail className="w-6 h-6 stroke-[3]" />
|
||||
</a>
|
||||
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center text-slate-400 hover:bg-purple-600 hover:text-white transition-all">
|
||||
<MessageCircle className="w-5 h-5" />
|
||||
<a
|
||||
href="#"
|
||||
className="w-14 h-14 bg-brutal-orange text-black flex items-center justify-center brutal-btn hover:bg-white transition-colors"
|
||||
>
|
||||
<MessageCircle className="w-6 h-6 stroke-[3]" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Links Col 1 */}
|
||||
<div>
|
||||
<h4 className="font-display font-bold text-white mb-6 uppercase tracking-wider text-sm">Platform</h4>
|
||||
<h4 className="font-display font-black text-white text-2xl mb-6 uppercase tracking-widest brutal-text-shadow">
|
||||
PLATFORM
|
||||
</h4>
|
||||
<ul className="space-y-4">
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Beranda</a></li>
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Event Terbaru</a></li>
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Semua Event</a></li>
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Kategori</a></li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
BERANDA
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
EVENT TERBARU
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
SEMUA EVENT
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
KATEGORI
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{/* Links Col 2 */}
|
||||
<div>
|
||||
<h4 className="font-display font-bold text-white mb-6 uppercase tracking-wider text-sm">Bantuan</h4>
|
||||
<h4 className="font-display font-black text-white text-2xl mb-6 uppercase tracking-widest brutal-text-shadow">
|
||||
BANTUAN
|
||||
</h4>
|
||||
<ul className="space-y-4">
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Hubungi Kami</a></li>
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Syarat & Ketentuan</a></li>
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">Kebijakan Privasi</a></li>
|
||||
<li><a href="#" className="text-slate-400 hover:text-purple-400 transition-colors text-sm">FAQ</a></li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
HUBUNGI KAMI
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
SYARAT KETENTUAN
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
PRIVASI
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="#"
|
||||
className="text-black hover:text-white transition-colors text-lg font-bold uppercase underline decoration-4 underline-offset-4 hover:bg-black px-2 py-1 inline-block"
|
||||
>
|
||||
FAQ
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="pt-8 border-t border-slate-800 flex flex-col md:flex-row items-center justify-between gap-4">
|
||||
<p className="text-slate-500 text-xs">
|
||||
© {new Date().getFullYear()} Smart Ticketing. All rights reserved.
|
||||
</p>
|
||||
<p className="text-slate-500 text-xs">
|
||||
Made with love in Indonesia
|
||||
<div className="pt-8 border-t-4 border-black flex flex-col md:flex-row items-center justify-between gap-6">
|
||||
<p className="text-black text-lg font-black uppercase bg-white px-4 py-2 brutal-border">
|
||||
© {new Date().getFullYear()} SMART TICKET. ALL RIGHTS RESERVED.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user