skypegasus-wings / index.html
Dmbitfx's picture
crie a pagina contatos
03d60b7 verified
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkyPegasus - Voos Brasil-Israel</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.flight-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.destination-card {
transition: all 0.3s ease;
}
.destination-card:hover {
transform: scale(1.03);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navbar -->
<nav class="bg-white shadow-lg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i data-feather="navigation" class="text-blue-600 w-8 h-8"></i>
<span class="ml-2 text-xl font-bold text-blue-600">SkyPegasus</span>
</div>
<div class="hidden md:ml-6 md:flex md:space-x-8">
<a href="index.html" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a>
<a href="voos.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Voos</a>
<a href="destinos.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Destinos</a>
<a href="ofertas.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Ofertas</a>
<a href="contatos.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Contato</a>
</div>
</div>
<div class="hidden md:ml-4 md:flex md:items-center">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium">Minha Conta</button>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500">
<i data-feather="menu" class="block h-6 w-6"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient text-white" id="vanta-bg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
<div class="mb-12 lg:mb-0">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl mb-6">
Voando para Israel nunca foi tão fácil
</h1>
<p class="text-xl text-blue-100 max-w-3xl">
Encontre as melhores tarifas aéreas do Brasil para Israel com apenas alguns cliques. Viagens confortáveis e memoráveis.
</p>
<div class="mt-8">
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-gray-100">
Pesquisar Voos
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
</div>
<div class="relative">
<div class="bg-white rounded-xl shadow-xl p-6 text-gray-800">
<h3 class="text-lg font-medium mb-4">Encontre seu voo</h3>
<div class="space-y-4">
<div>
<label for="origin" class="block text-sm font-medium text-gray-700">Origem</label>
<select id="origin" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md">
<option selected>São Paulo (GRU)</option>
<option>Rio de Janeiro (GIG)</option>
<option>Brasília (BSB)</option>
<option>Recife (REC)</option>
<option>Salvador (SSA)</option>
</select>
</div>
<div>
<label for="destination" class="block text-sm font-medium text-gray-700">Destino</label>
<select id="destination" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md">
<option selected>Tel Aviv (TLV)</option>
<option>Jerusalém (JRS)</option>
<option>Eilat (ETH)</option>
</select>
</div>
<div class="grid grid-cols-2 gap-4">
<div>
<label for="departure" class="block text-sm font-medium text-gray-700">Ida</label>
<input type="date" id="departure" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md">
</div>
<div>
<label for="return" class="block text-sm font-medium text-gray-700">Volta</label>
<input type="date" id="return" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md">
</div>
</div>
<div>
<label for="passengers" class="block text-sm font-medium text-gray-700">Passageiros</label>
<select id="passengers" class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md">
<option>1 adulto</option>
<option selected>2 adultos</option>
<option>2 adultos, 1 criança</option>
<option>Família (2+2)</option>
</select>
</div>
<button type="submit" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Buscar Voos
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Popular Flights -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
<div class="text-center mb-12">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Voos Populares para Israel
</h2>
<p class="mt-3 max-w-2xl mx-auto text-xl text-gray-500 sm:mt-4">
As rotas mais procuradas pelos nossos clientes
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Flight 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden flight-card transition duration-300 ease-in-out">
<div class="relative h-48">
<img class="h-full w-full object-cover" src="http://static.photos/travel/640x360/1" alt="Tel Aviv">
<div class="absolute top-0 left-0 bg-blue-600 text-white px-3 py-1 rounded-br-lg">
<span class="font-bold">-15%</span>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<h3 class="text-xl font-bold text-gray-900">São Paulo → Tel Aviv</h3>
<p class="text-gray-500 mt-1">Duração: 14h 20m</p>
</div>
<div class="text-right">
<p class="text-sm text-gray-500 line-through">R$ 4,299</p>
<p class="text-2xl font-bold text-blue-600">R$ 3,654</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div class="flex items-center text-sm text-gray-500">
<i data-feather="calendar" class="w-4 h-4 mr-1"></i>
<span>Saídas diárias</span>
</div>
<button class="px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded-md hover:bg-blue-700">
Reservar
</button>
</div>
</div>
</div>
<!-- Flight 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden flight-card transition duration-300 ease-in-out">
<div class="relative h-48">
<img class="h-full w-full object-cover" src="http://static.photos/cityscape/640x360/2" alt="Jerusalém">
</div>
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<h3 class="text-xl font-bold text-gray-900">Rio de Janeiro → Jerusalém</h3>
<p class="text-gray-500 mt-1">Duração: 16h 10m</p>
</div>
<div class="text-right">
<p class="text-2xl font-bold text-blue-600">R$ 3,899</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div class="flex items-center text-sm text-gray-500">
<i data-feather="calendar" class="w-4 h-4 mr-1"></i>
<span>3x por semana</span>
</div>
<button class="px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded-md hover:bg-blue-700">
Reservar
</button>
</div>
</div>
</div>
<!-- Flight 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden flight-card transition duration-300 ease-in-out">
<div class="relative h-48">
<img class="h-full w-full object-cover" src="http://static.photos/travel/640x360/3" alt="Eilat">
<div class="absolute top-0 left-0 bg-blue-600 text-white px-3 py-1 rounded-br-lg">
<span class="font-bold">Promoção</span>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<h3 class="text-xl font-bold text-gray-900">Brasília → Eilat</h3>
<p class="text-gray-500 mt-1">Duração: 18h 30m</p>
</div>
<div class="text-right">
<p class="text-sm text-gray-500 line-through">R$ 4,899</p>
<p class="text-2xl font-bold text-blue-600">R$ 3,999</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div class="flex items-center text-sm text-gray-500">
<i data-feather="calendar" class="w-4 h-4 mr-1"></i>
<span>2x por semana</span>
</div>
<button class="px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded-md hover:bg-blue-700">
Reservar
</button>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700">
Ver todos os voos
<i data-feather="chevron-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
</div>
<!-- Why Choose Us -->
<div class="bg-gray-100 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Por que escolher a SkyPegasus?
</h2>
<p class="mt-3 max-w-2xl mx-auto text-xl text-gray-500 sm:mt-4">
Viaje com confiança e comodidade
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-sm text-center">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i data-feather="shield" class="w-6 h-6"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Segurança Garantida</h3>
<p class="text-gray-500">
Trabalhamos apenas com companhias aéreas de alto padrão de segurança e confiabilidade.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm text-center">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i data-feather="dollar-sign" class="w-6 h-6"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Melhor Preço</h3>
<p class="text-gray-500">
Garantimos os melhores preços do mercado ou reembolsamos a diferença.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm text-center">
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i data-feather="headphones" class="w-6 h-6"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Suporte 24/7</h3>
<p class="text-gray-500">
Nossa equipe está disponível a qualquer momento para ajudar com sua viagem.
</p>
</div>
</div>
</div>
</div>
<!-- Destinations -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
<div class="text-center mb-12">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Descubra Israel
</h2>
<p class="mt-3 max-w-2xl mx-auto text-xl text-gray-500 sm:mt-4">
Os destinos mais incríveis para sua viagem
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="destination-card relative rounded-lg overflow-hidden shadow-md">
<img class="h-48 w-full object-cover" src="http://static.photos/cityscape/640x360/4" alt="Tel Aviv">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-0 left-0 p-4">
<h3 class="text-xl font-bold text-white">Tel Aviv</h3>
<p class="text-blue-200">Cidade moderna e vibrante</p>
</div>
</div>
<div class="destination-card relative rounded-lg overflow-hidden shadow-md">
<img class="h-48 w-full object-cover" src="http://static.photos/travel/640x360/5" alt="Jerusalém">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-0 left-0 p-4">
<h3 class="text-xl font-bold text-white">Jerusalém</h3>
<p class="text-blue-200">Cidade sagrada e histórica</p>
</div>
</div>
<div class="destination-card relative rounded-lg overflow-hidden shadow-md">
<img class="h-48 w-full object-cover" src="http://static.photos/travel/640x360/6" alt="Mar Morto">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-0 left-0 p-4">
<h3 class="text-xl font-bold text-white">Mar Morto</h3>
<p class="text-blue-200">Relaxe e flutue nas águas</p>
</div>
</div>
<div class="destination-card relative rounded-lg overflow-hidden shadow-md">
<img class="h-48 w-full object-cover" src="http://static.photos/travel/640x360/7" alt="Eilat">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-0 left-0 p-4">
<h3 class="text-xl font-bold text-white">Eilat</h3>
<p class="text-blue-200">Paraíso no Mar Vermelho</p>
</div>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="bg-blue-600 text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-extrabold sm:text-4xl">
O que nossos clientes dizem
</h2>
<p class="mt-3 max-w-2xl mx-auto text-xl text-blue-100 sm:mt-4">
Experiências reais de viajantes para Israel
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-blue-700 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img class="h-12 w-12 rounded-full object-cover" src="http://static.photos/people/200x200/1" alt="João Silva">
<div class="ml-4">
<h4 class="font-bold">João Silva</h4>
<div class="flex text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
<p class="text-blue-100">
"A SkyPegasus tornou minha viagem para Israel incrivelmente fácil. Encontrei o melhor preço e o atendimento foi excepcional. Recomendo muito!"
</p>
</div>
<div class="bg-blue-700 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img class="h-12 w-12 rounded-full object-cover" src="http://static.photos/people/200x200/2" alt="Maria Oliveira">
<div class="ml-4">
<h4 class="font-bold">Maria Oliveira</h4>
<div class="flex text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
<p class="text-blue-100">
"Minha família e eu tivemos uma experiência maravilhosa. Os voos foram bem organizados e a equipe nos ajudou com todas as dúvidas. Voltaremos a usar!"
</p>
</div>
<div class="bg-blue-700 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img class="h-12 w-12 rounded-full object-cover" src="http://static.photos/people/200x200/3" alt="Carlos Souza">
<div class="ml-4">
<h4 class="font-bold">Carlos Souza</h4>
<div class="flex text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
<p class="text-blue-100">
"Como viajante frequente para Israel, posso dizer que a SkyPegasus oferece os melhores preços e rotas. O processo de reserva é simples e rápido."
</p>
</div>
</div>
</div>
</div>
<!-- Newsletter -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="bg-blue-50 rounded-lg p-8">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-6 md:mb-0">
<h3 class="text-2xl font-bold text-gray-900">Receba ofertas exclusivas</h3>
<p class="mt-2 text-gray-600">
Assine nossa newsletter e seja o primeiro a saber sobre promoções especiais para Israel.
</p>
</div>
<div class="md:w-1/2">
<form class="flex">
<input type="email" placeholder="Seu melhor email" class="flex-grow px-4 py-2 rounded-l-md border border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
<button type="submit" class="px-6 py-2 bg-blue-600 text-white font-medium rounded-r-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Assinar
</button>
</form>
<p class="mt-2 text-sm text-gray-500">
Não compartilhamos seu email com terceiros.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold mb-4">SkyPegasus</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Sobre nós</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Carreiras</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Imprensa</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Ajuda</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Central de Ajuda</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Segurança</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Perguntas Frequentes</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Contato</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Termos de Uso</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Política de Privacidade</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Cookies</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Reembolsos</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Siga-nos</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-300 hover:text-white">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-300 hover:text-white">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-300 hover:text-white">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-300 hover:text-white">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
</div>
<div class="mt-4">
<p class="text-sm text-gray-400">
Baixe nosso aplicativo
</p>
<div class="flex space-x-2 mt-2">
<a href="#">
<img class="h-10" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Download_on_the_App_Store_Badge.svg/1200px-Download_on_the_App_Store_Badge.svg.png" alt="App Store">
</a>
<a href="#">
<img class="h-10" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Google_Play_Store_badge_EN.svg/1200px-Google_Play_Store_badge_EN.svg.png" alt="Google Play">
</a>
</div>
</div>
</div>
</div>
<div class="mt-12 border-t border-gray-700 pt-8">
<div class="md:flex md:items-center md:justify-between">
<div class="text-center md:text-left">
<p class="text-gray-400">
&copy; 2023 SkyPegasus. Todos os direitos reservados.
</p>
</div>
<div class="mt-4 md:mt-0">
<div class="flex items-center justify-center md:justify-end space-x-6">
<img class="h-8" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/1200px-Flag_of_Europe.svg.png" alt="Europa">
<img class="h-8" src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/1200px-Flag_of_Brazil.svg.png" alt="Brasil">
<img class="h-8" src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Flag_of_Israel.svg/1200px-Flag_of_Israel.svg.png" alt="Israel">
</div>
</div>
</div>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js globe
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x1e3a8a,
size: 0.8
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>