- Move map pin icon to right side of input with adjusted spacing - Change button styling from accent to primary color
441 lines
28 KiB
Vue
441 lines
28 KiB
Vue
<template>
|
||
<div class="min-h-screen bg-zinc-100">
|
||
|
||
<!-- Navigation -->
|
||
<nav class="fixed top-0 w-full z-50 bg-zinc-50 border-b border-zinc-300 px-6 py-4 md:px-12">
|
||
<div class="max-w-7xl mx-auto flex items-center justify-between">
|
||
<RouterLink class="flex items-center gap-3" to="/">
|
||
<div class="w-10 h-10 md:w-12 md:h-12 rounded-lg bg-accent flex items-center justify-center shadow-md">
|
||
<iconify-icon class="text-white text-xl md:text-2xl" icon="lucide:fuel"></iconify-icon>
|
||
</div>
|
||
<span class="text-2xl md:text-3xl font-black font-display tracking-tighter text-accent">FuelAlert</span>
|
||
</RouterLink>
|
||
|
||
<div class="hidden md:flex items-center gap-10">
|
||
<a class="text-sm font-semibold text-zinc-500 hover:text-accent transition-colors" href="#how-it-works">How it Works</a>
|
||
<a class="text-sm font-semibold text-zinc-500 hover:text-accent transition-colors" href="#features">Features</a>
|
||
<a class="text-sm font-semibold text-zinc-500 hover:text-accent transition-colors" href="#pricing">Pricing</a>
|
||
</div>
|
||
|
||
<div class="flex items-center gap-4">
|
||
<template v-if="isAuthenticated">
|
||
<RouterLink class="text-sm font-bold text-zinc-500 hover:text-zinc-800" to="/dashboard">Dashboard</RouterLink>
|
||
</template>
|
||
<template v-else>
|
||
<a class="text-sm font-bold text-zinc-500 hover:text-zinc-800" href="/login">Login</a>
|
||
<a class="bg-accent text-white px-6 py-2.5 rounded-full text-sm font-bold shadow-lg hover:bg-primary-dark transition-all transform hover:scale-105 active:scale-95" href="/register">Get Started</a>
|
||
</template>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<!-- Hero -->
|
||
<section id="hero" class="relative pt-24 md:pt-40 pb-12 md:pb-24 px-6 hero-gradient overflow-hidden">
|
||
<div class="max-w-7xl mx-auto grid lg:grid-cols-2 gap-16 items-center">
|
||
<div class="space-y-8">
|
||
<div class="inline-flex items-center gap-2 px-3 py-1 bg-accent/10 text-accent rounded-full text-xs font-bold uppercase tracking-wider">
|
||
<iconify-icon icon="lucide:sparkles"></iconify-icon>
|
||
Save up to £250/year on fuel
|
||
</div>
|
||
<h1 class="text-4xl sm:text-5xl md:text-7xl font-black font-display text-zinc-800 leading-[1.1] tracking-tighter">
|
||
Stop Overpaying <br class="hidden sm:block"><span class="text-accent">for Fuel.</span>
|
||
</h1>
|
||
<p class="text-xl text-zinc-500 max-w-lg leading-relaxed">
|
||
Join 50,000+ UK drivers using real-time insights to find the cheapest petrol and time their fill-ups perfectly.
|
||
</p>
|
||
|
||
<SearchBar @search="onSearch" />
|
||
|
||
<div class="flex items-center gap-4 pt-4">
|
||
<div class="flex -space-x-2">
|
||
<img alt="User" class="w-8 h-8 rounded-full border-2 border-white" src="https://api.dicebear.com/7.x/avataaars/svg?seed=1">
|
||
<img alt="User" class="w-8 h-8 rounded-full border-2 border-white" src="https://api.dicebear.com/7.x/avataaars/svg?seed=2">
|
||
<img alt="User" class="w-8 h-8 rounded-full border-2 border-white" src="https://api.dicebear.com/7.x/avataaars/svg?seed=3">
|
||
</div>
|
||
<span class="text-sm text-zinc-500 font-medium italic">"Saved me £12 on my first tank!"</span>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Visual mockup card -->
|
||
<div class="relative hidden lg:block">
|
||
<div class="absolute -inset-4 bg-accent/5 rounded-[2.5rem] blur-2xl"></div>
|
||
<div class="relative glass-card p-6 rounded-[2rem] shadow-2xl space-y-4 max-w-md mx-auto transform rotate-2">
|
||
<div class="flex justify-between items-center mb-4">
|
||
<div class="flex items-center gap-2">
|
||
<div class="w-8 h-8 rounded bg-accent flex items-center justify-center">
|
||
<iconify-icon class="text-white" icon="lucide:fuel"></iconify-icon>
|
||
</div>
|
||
<span class="font-black text-accent">FuelAlert</span>
|
||
</div>
|
||
<div class="text-xs font-bold text-zinc-500">SW1A 1AA</div>
|
||
</div>
|
||
|
||
<div class="bg-zinc-50 p-4 rounded-xl border border-zinc-300 shadow-sm">
|
||
<p class="text-[10px] font-bold uppercase tracking-widest text-zinc-500 mb-1">Recommendation</p>
|
||
<h3 class="text-2xl font-black font-display text-mauve">Fill up now</h3>
|
||
<div class="mt-2 h-1.5 w-full bg-zinc-200 rounded-full overflow-hidden">
|
||
<div class="h-full bg-mauve w-[80%]"></div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="space-y-2">
|
||
<div class="flex justify-between items-center p-3 bg-white rounded-lg border border-zinc-200">
|
||
<span class="font-bold text-sm">Tesco Superstore</span>
|
||
<span class="font-black text-status-good">142.9p</span>
|
||
</div>
|
||
<div class="flex justify-between items-center p-3 bg-white rounded-lg border border-zinc-200">
|
||
<span class="font-bold text-sm">Shell V-Power</span>
|
||
<span class="font-black text-zinc-500">148.9p</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Search Results -->
|
||
<section v-if="searchAttempted" class="px-6 py-10 bg-zinc-100">
|
||
<div class="max-w-7xl mx-auto space-y-6">
|
||
|
||
<!-- Loading -->
|
||
<div v-if="loading" class="flex items-center justify-center py-16">
|
||
<div class="flex items-center gap-3 text-zinc-500">
|
||
<iconify-icon icon="lucide:loader-circle" class="animate-spin text-2xl text-accent"></iconify-icon>
|
||
<span class="font-medium">Finding stations near you…</span>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Error -->
|
||
<div v-else-if="error" class="flex items-center gap-3 p-4 bg-white border border-zinc-300 rounded-xl text-status-bad">
|
||
<iconify-icon icon="lucide:circle-alert" style="font-size:1.25rem"></iconify-icon>
|
||
<span class="font-medium">{{ Object.values(error).flat()[0] ?? 'Unable to load stations. Please try again.' }}</span>
|
||
</div>
|
||
|
||
<!-- Results -->
|
||
<template v-else>
|
||
<div v-if="!stations.length" class="flex items-center gap-3 p-4 bg-white border border-zinc-300 rounded-xl text-zinc-500">
|
||
<iconify-icon icon="lucide:map-pin-off" style="font-size:1.25rem"></iconify-icon>
|
||
<span class="font-medium">No stations found near you. Try a different postcode or increase the radius.</span>
|
||
</div>
|
||
<template v-else>
|
||
<LeafletMap :stations="stations" :default-open="true" />
|
||
<StationList :stations="stations" :current-sort="sort" @sort="onSort" />
|
||
</template>
|
||
</template>
|
||
|
||
</div>
|
||
</section>
|
||
|
||
<!-- How It Works -->
|
||
<section id="how-it-works" class="py-12 md:py-24 px-6 bg-zinc-50">
|
||
<div class="max-w-7xl mx-auto">
|
||
<div class="text-center mb-16 space-y-4">
|
||
<h2 class="text-4xl md:text-5xl font-black font-display text-zinc-800">Smart Savings in 3 Steps</h2>
|
||
<p class="text-zinc-500 text-lg max-w-2xl mx-auto">Stop guessing when to fill up. Our engine analyzes thousands of data points daily to save you money.</p>
|
||
</div>
|
||
|
||
<div class="grid md:grid-cols-3 gap-12">
|
||
<div class="text-center space-y-4">
|
||
<div class="w-16 h-16 bg-accent/10 text-accent rounded-2xl flex items-center justify-center mx-auto text-3xl">
|
||
<iconify-icon icon="lucide:search"></iconify-icon>
|
||
</div>
|
||
<h3 class="text-2xl font-bold font-display">1. Search</h3>
|
||
<p class="text-zinc-500">Enter your postcode or location to find every forecourt within a 5–20 mile radius instantly.</p>
|
||
</div>
|
||
<div class="text-center space-y-4">
|
||
<div class="w-16 h-16 bg-accent/10 text-accent rounded-2xl flex items-center justify-center mx-auto text-3xl">
|
||
<iconify-icon icon="lucide:trending-up"></iconify-icon>
|
||
</div>
|
||
<h3 class="text-2xl font-bold font-display">2. Get Advice</h3>
|
||
<p class="text-zinc-500">Our AI compares local prices against national wholesale trends to give you a Fill Up / Wait recommendation.</p>
|
||
</div>
|
||
<div class="text-center space-y-4">
|
||
<div class="w-16 h-16 bg-accent/10 text-accent rounded-2xl flex items-center justify-center mx-auto text-3xl">
|
||
<iconify-icon icon="lucide:wallet"></iconify-icon>
|
||
</div>
|
||
<h3 class="text-2xl font-bold font-display">3. Fill Up Smart</h3>
|
||
<p class="text-zinc-500">Navigate to the cheapest station and fill up with confidence knowing you've secured the best price.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Features -->
|
||
<section id="features" class="py-12 md:py-24 px-6">
|
||
<div class="max-w-7xl mx-auto">
|
||
<div class="grid lg:grid-cols-2 gap-20 items-center">
|
||
<div class="order-2 lg:order-1">
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div class="p-6 bg-zinc-50 border border-zinc-300 rounded-2xl space-y-3">
|
||
<iconify-icon class="text-3xl text-accent" icon="lucide:zap"></iconify-icon>
|
||
<h4 class="font-bold text-lg font-display">Real-Time Prices</h4>
|
||
<p class="text-sm text-zinc-500">Verified daily prices from thousands of UK forecourts.</p>
|
||
</div>
|
||
<div class="p-6 bg-zinc-50 border border-zinc-300 rounded-2xl space-y-3">
|
||
<iconify-icon class="text-3xl text-accent" icon="lucide:calendar"></iconify-icon>
|
||
<h4 class="font-bold text-lg font-display">Timing Predictions</h4>
|
||
<p class="text-sm text-zinc-500">Proprietary 14-day forecasts for petrol and diesel trends.</p>
|
||
</div>
|
||
<div class="p-6 bg-zinc-50 border border-zinc-300 rounded-2xl space-y-3">
|
||
<iconify-icon class="text-3xl text-accent" icon="lucide:shopping-bag"></iconify-icon>
|
||
<h4 class="font-bold text-lg font-display">Supermarket Anchors</h4>
|
||
<p class="text-sm text-zinc-500">Track local supermarkets to find the absolute lowest base price.</p>
|
||
</div>
|
||
<div class="p-6 bg-zinc-50 border border-zinc-300 rounded-2xl space-y-3">
|
||
<iconify-icon class="text-3xl text-accent" icon="lucide:bell-ring"></iconify-icon>
|
||
<h4 class="font-bold text-lg font-display">Smart Price Alerts</h4>
|
||
<p class="text-sm text-zinc-500">Get notified when local prices drop below your set target.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="order-1 lg:order-2 space-y-8">
|
||
<h2 class="text-4xl md:text-5xl font-black font-display text-zinc-800">The ultimate fuel companion.</h2>
|
||
<p class="text-lg text-zinc-500">Whether you're a daily commuter, a delivery professional, or just planning a weekend road trip, FuelAlert gives you the edge at the pump.</p>
|
||
<ul class="space-y-4">
|
||
<li class="flex items-center gap-3 font-bold">
|
||
<iconify-icon class="text-accent" icon="lucide:check-circle-2"></iconify-icon>
|
||
Coverage for 98% of UK Forecourts
|
||
</li>
|
||
<li class="flex items-center gap-3 font-bold">
|
||
<iconify-icon class="text-accent" icon="lucide:check-circle-2"></iconify-icon>
|
||
Hyper-local Map Visualization
|
||
</li>
|
||
<li class="flex items-center gap-3 font-bold">
|
||
<iconify-icon class="text-accent" icon="lucide:check-circle-2"></iconify-icon>
|
||
Historic Price Benchmarking
|
||
</li>
|
||
</ul>
|
||
<button class="inline-flex items-center gap-2 text-accent font-black text-lg group">
|
||
Explore all features
|
||
<iconify-icon class="group-hover:translate-x-1 transition-transform" icon="lucide:arrow-right"></iconify-icon>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Pricing -->
|
||
<section id="pricing" class="py-12 md:py-24 px-6 bg-zinc-50">
|
||
<div class="max-w-7xl mx-auto">
|
||
<div class="text-center mb-16">
|
||
<h2 class="text-4xl md:text-5xl font-black font-display text-zinc-800 mb-4">Pricing for every driver</h2>
|
||
<p class="text-zinc-500 text-lg">Save hundreds for less than the cost of a coffee.</p>
|
||
</div>
|
||
|
||
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6">
|
||
<!-- Free -->
|
||
<div class="bg-white border border-zinc-300 p-8 rounded-3xl flex flex-col h-full">
|
||
<div class="mb-8">
|
||
<h4 class="text-xl font-bold font-display mb-2">Free</h4>
|
||
<div class="flex items-baseline gap-1">
|
||
<span class="text-4xl font-black">£0</span>
|
||
<span class="text-zinc-500 text-sm">/mo</span>
|
||
</div>
|
||
</div>
|
||
<ul class="space-y-4 mb-8 flex-1">
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Basic Search</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Daily Updates</li>
|
||
<li class="text-sm flex gap-2 text-zinc-500"><iconify-icon class="text-zinc-300" icon="lucide:x"></iconify-icon> No Alerts</li>
|
||
</ul>
|
||
<a class="w-full py-3 px-4 border border-zinc-300 rounded-xl text-center font-bold hover:bg-zinc-100 transition-colors" href="/register">Get Started</a>
|
||
</div>
|
||
|
||
<!-- Basic -->
|
||
<div class="bg-white border border-zinc-300 p-8 rounded-3xl flex flex-col h-full">
|
||
<div class="mb-8">
|
||
<h4 class="text-xl font-bold font-display mb-2">Basic</h4>
|
||
<div class="flex items-baseline gap-1">
|
||
<span class="text-4xl font-black">£0.99</span>
|
||
<span class="text-zinc-500 text-sm">/mo</span>
|
||
</div>
|
||
</div>
|
||
<ul class="space-y-4 mb-8 flex-1">
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Ad-free Experience</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> 14-day Trend Data</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> 3 Daily Price Alerts</li>
|
||
</ul>
|
||
<a class="w-full py-3 px-4 border border-zinc-300 rounded-xl text-center font-bold hover:bg-zinc-100 transition-colors" href="/register">Select Basic</a>
|
||
</div>
|
||
|
||
<!-- Plus -->
|
||
<div class="bg-white border-2 border-accent p-8 rounded-3xl flex flex-col h-full relative">
|
||
<div class="absolute -top-4 left-1/2 -translate-x-1/2 bg-accent text-white px-4 py-1 rounded-full text-[10px] font-black uppercase tracking-widest whitespace-nowrap">Most Popular</div>
|
||
<div class="mb-8">
|
||
<h4 class="text-xl font-bold font-display mb-2">Plus</h4>
|
||
<div class="flex items-baseline gap-1">
|
||
<span class="text-4xl font-black text-accent">£2.49</span>
|
||
<span class="text-zinc-500 text-sm">/mo</span>
|
||
</div>
|
||
</div>
|
||
<ul class="space-y-4 mb-8 flex-1">
|
||
<li class="text-sm flex gap-2 font-bold"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Supermarket Anchor</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Priority Price Alerts</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Multi-location tracking</li>
|
||
</ul>
|
||
<a class="w-full py-3 px-4 bg-accent text-white rounded-xl text-center font-bold shadow-lg hover:bg-primary-dark transition-all" href="/register">Join Plus</a>
|
||
</div>
|
||
|
||
<!-- Pro -->
|
||
<div class="bg-zinc-800 border border-zinc-800 p-8 rounded-3xl flex flex-col h-full text-white">
|
||
<div class="mb-8">
|
||
<h4 class="text-xl font-bold font-display mb-2">Pro</h4>
|
||
<div class="flex items-baseline gap-1">
|
||
<span class="text-4xl font-black">£3.99</span>
|
||
<span class="text-zinc-400 text-sm">/mo</span>
|
||
</div>
|
||
</div>
|
||
<ul class="space-y-4 mb-8 flex-1">
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:sparkles"></iconify-icon> AI Price Predictions</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Multi-Vehicle Fleet</li>
|
||
<li class="text-sm flex gap-2"><iconify-icon class="text-accent" icon="lucide:check"></iconify-icon> Exportable Price History</li>
|
||
</ul>
|
||
<a class="w-full py-3 px-4 bg-white text-zinc-800 rounded-xl text-center font-bold hover:bg-zinc-100 transition-colors" href="/register">Go Pro</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Testimonials -->
|
||
<section class="py-12 md:py-24 px-6">
|
||
<div class="max-w-7xl mx-auto">
|
||
<div class="flex flex-col md:flex-row gap-12 items-center">
|
||
<div class="md:w-1/3">
|
||
<h2 class="text-4xl font-black font-display text-zinc-800 mb-4">Loved by commuters.</h2>
|
||
<div class="flex items-center gap-1 text-status-warn mb-4 text-xl">
|
||
<iconify-icon icon="lucide:star"></iconify-icon>
|
||
<iconify-icon icon="lucide:star"></iconify-icon>
|
||
<iconify-icon icon="lucide:star"></iconify-icon>
|
||
<iconify-icon icon="lucide:star"></iconify-icon>
|
||
<iconify-icon icon="lucide:star"></iconify-icon>
|
||
</div>
|
||
<p class="text-zinc-500">Join thousands of UK drivers saving every single month.</p>
|
||
</div>
|
||
<div class="md:w-2/3 grid sm:grid-cols-2 gap-6">
|
||
<div class="p-6 bg-zinc-50 border border-zinc-300 rounded-2xl shadow-sm italic text-zinc-800">
|
||
"I used to just go to the station on my way home. Now I check FuelAlert and realise there's a station 2 miles away that's 5p cheaper! Over a month, it adds up to a free tank per year."
|
||
<div class="mt-4 flex items-center gap-3 not-italic">
|
||
<img alt="James R." class="w-10 h-10 rounded-full" src="https://api.dicebear.com/7.x/avataaars/svg?seed=John">
|
||
<div>
|
||
<p class="font-bold text-sm">James R.</p>
|
||
<p class="text-[10px] text-zinc-500 uppercase font-bold tracking-widest">Daily Commuter</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="p-6 bg-zinc-50 border border-zinc-300 rounded-2xl shadow-sm italic text-zinc-800">
|
||
"The predictions are eerily accurate. I was going to fill up Friday, but FuelAlert said 'Hold on' for Monday. Sure enough, prices dropped at my local Tesco by 3p. Brilliant."
|
||
<div class="mt-4 flex items-center gap-3 not-italic">
|
||
<img alt="Sarah M." class="w-10 h-10 rounded-full" src="https://api.dicebear.com/7.x/avataaars/svg?seed=Sarah">
|
||
<div>
|
||
<p class="font-bold text-sm">Sarah M.</p>
|
||
<p class="text-[10px] text-zinc-500 uppercase font-bold tracking-widest">Delivery Driver</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- CTA -->
|
||
<section class="py-12 md:py-24 px-6 bg-accent text-white text-center">
|
||
<div class="max-w-3xl mx-auto space-y-8">
|
||
<h2 class="text-4xl md:text-5xl font-black font-display leading-tight">Ready to outsmart the pumps?</h2>
|
||
<p class="text-xl text-white/80">Sign up for free today and never pay over the odds for fuel again.</p>
|
||
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
||
<a class="bg-white text-accent px-10 py-4 rounded-xl text-lg font-black shadow-2xl hover:bg-zinc-100 transition-all" href="/register">Create Free Account</a>
|
||
<a class="bg-transparent border-2 border-white/30 text-white px-10 py-4 rounded-xl text-lg font-bold hover:bg-white/10 transition-all" href="#">Watch Demo Video</a>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Footer -->
|
||
<footer class="bg-zinc-50 border-t border-zinc-300 pt-16 pb-8 px-6">
|
||
<div class="max-w-7xl mx-auto grid grid-cols-2 md:grid-cols-4 gap-12 mb-12">
|
||
<div class="col-span-2 md:col-span-1 space-y-4">
|
||
<RouterLink class="flex items-center gap-2" to="/">
|
||
<div class="w-8 h-8 rounded bg-accent flex items-center justify-center">
|
||
<iconify-icon class="text-white" icon="lucide:fuel"></iconify-icon>
|
||
</div>
|
||
<span class="text-xl font-black font-display tracking-tighter text-accent">FuelAlert</span>
|
||
</RouterLink>
|
||
<p class="text-sm text-zinc-500 leading-relaxed">
|
||
Helping UK drivers save money at the pump since 2021. Real-time data, smarter choices.
|
||
</p>
|
||
<div class="flex gap-4">
|
||
<iconify-icon class="text-2xl text-zinc-500 hover:text-accent cursor-pointer transition-colors" icon="mdi:twitter"></iconify-icon>
|
||
<iconify-icon class="text-2xl text-zinc-500 hover:text-accent cursor-pointer transition-colors" icon="mdi:facebook"></iconify-icon>
|
||
<iconify-icon class="text-2xl text-zinc-500 hover:text-accent cursor-pointer transition-colors" icon="mdi:instagram"></iconify-icon>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="space-y-4">
|
||
<h5 class="font-black uppercase text-xs text-zinc-800 tracking-widest">Product</h5>
|
||
<ul class="space-y-2 text-sm text-zinc-500">
|
||
<li><a class="hover:text-accent transition-colors" href="#pricing">Pricing</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#features">Features</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">FuelAlert Pro</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">Enterprise API</a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="space-y-4">
|
||
<h5 class="font-black uppercase text-xs text-zinc-800 tracking-widest">Resources</h5>
|
||
<ul class="space-y-2 text-sm text-zinc-500">
|
||
<li><a class="hover:text-accent transition-colors" href="#">Market Insights</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">How We Track</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">Help Center</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">Driver Safety</a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="space-y-4">
|
||
<h5 class="font-black uppercase text-xs text-zinc-800 tracking-widest">Legal</h5>
|
||
<ul class="space-y-2 text-sm text-zinc-500">
|
||
<li><a class="hover:text-accent transition-colors" href="#">Privacy Policy</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">Terms of Service</a></li>
|
||
<li><a class="hover:text-accent transition-colors" href="#">Cookie Settings</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="max-w-7xl mx-auto pt-8 border-t border-zinc-300 flex flex-col md:flex-row justify-between items-center gap-4 text-[10px] font-bold uppercase tracking-widest text-zinc-500">
|
||
<p>© 2024 FuelAlert UK Limited. All Rights Reserved.</p>
|
||
<p>Data provided by official UK retail price transparency schemes.</p>
|
||
</div>
|
||
</footer>
|
||
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref } from 'vue'
|
||
import { RouterLink } from 'vue-router'
|
||
import { useAuth } from '../composables/useAuth.js'
|
||
import { useStations } from '../composables/useStations.js'
|
||
import SearchBar from '../components/SearchBar.vue'
|
||
import LeafletMap from '../components/LeafletMap.vue'
|
||
import StationList from '../components/StationList.vue'
|
||
|
||
const { isAuthenticated } = useAuth()
|
||
const { stations, loading, error, search } = useStations()
|
||
|
||
const sort = ref('price')
|
||
const lastParams = ref(null)
|
||
const searchAttempted = ref(false)
|
||
|
||
async function onSearch(params) {
|
||
lastParams.value = params
|
||
sort.value = params.sort ?? sort.value
|
||
searchAttempted.value = true
|
||
await search(params)
|
||
}
|
||
|
||
async function onSort(newSort) {
|
||
sort.value = newSort
|
||
if (lastParams.value) {
|
||
await search({ ...lastParams.value, sort: newSort })
|
||
}
|
||
}
|
||
</script>
|