Styling refactor

This commit is contained in:
augmentedpotato
2026-04-18 16:12:43 -06:00
committed by Harkamal Randhawa
parent 049c39984b
commit 077d147498
21 changed files with 829 additions and 4509 deletions

View File

@@ -3,6 +3,10 @@
import { useState, useEffect } from "react";
import { useAuth } from "@/context/AuthContext";
const labelCls = "flex flex-col gap-[0.35rem] text-[0.9rem] font-semibold text-[#444]";
const inputCls = "px-[0.85rem] py-[0.6rem] border border-[#ddd] rounded-lg text-base outline-none transition-all focus:border-[#e68672] focus:shadow-[0_0_0_3px_rgba(230,134,114,0.2)]";
const submitBtnCls = "mt-2 py-3 bg-[#e68672] text-white border-none rounded-lg text-base font-bold cursor-pointer transition-all hover:bg-[#d4705e] active:scale-[0.98] disabled:opacity-60 disabled:cursor-not-allowed";
function getStoreImage(store) {
if (store.imageUrl) return store.imageUrl;
const name = store.storeName?.toLowerCase() ?? "";
@@ -62,51 +66,36 @@ export default function ContactPage() {
}
return (
<main className="info-page">
<section className="info-hero">
<h1 className="info-title">Contact Us</h1>
<p className="info-subtitle">Reach the team, find a location, or send us a message.</p>
<div className="title-decoration"></div>
<main className="min-h-screen">
<section className="text-center py-16 px-8 bg-gradient-to-b from-[#f9f9f9] to-white">
<h1 className="text-5xl font-bold text-[#333] mb-4 tracking-tight max-[768px]:text-3xl max-[480px]:text-[1.6rem]">Contact Us</h1>
<p className="text-2xl font-light text-[#666] mb-8 max-[768px]:text-[1.2rem]">Reach the team, find a location, or send us a message.</p>
<div className="w-[100px] h-1 bg-[#e68672] mx-auto mt-8 rounded-sm"></div>
</section>
<section className="contact-layout">
<div className="info-card">
<h2>Get in Touch</h2>
<p>Email: hello@leonspetstore.com.au</p>
<p>Phone: (03) 9000 0000</p>
<p>Hours: MonSat, 9:00 AM 6:00 PM</p>
<section className="max-w-[1200px] mx-auto px-8 pb-16 grid grid-cols-2 gap-8 max-[900px]:grid-cols-1">
<div className="bg-white rounded-2xl shadow-[0_4px_16px_rgba(0,0,0,0.08)] p-8">
<h2 className="text-[1.4rem] font-bold text-[#222] mb-4">Get in Touch</h2>
<p className="text-[#555] mb-2">Email: hello@leonspetstore.com.au</p>
<p className="text-[#555] mb-2">Phone: (03) 9000 0000</p>
<p className="text-[#555] mb-6">Hours: MonSat, 9:00 AM 6:00 PM</p>
<div className="contact-form-section">
<h3>Send Us a Message</h3>
<div className="mt-6">
<h3 className="text-[1.1rem] font-bold text-[#333] mb-4">Send Us a Message</h3>
{sendSuccess ? (
<p className="contact-success">Your message has been sent. We&apos;ll be in touch soon.</p>
<p className="bg-[#f0fdf4] border border-[#bbf7d0] text-[#16a34a] rounded-lg px-4 py-3 text-[0.9rem]">Your message has been sent. We&apos;ll be in touch soon.</p>
) : (
<form className="auth-form" onSubmit={handleSend}>
<label className="auth-label">
<form className="flex flex-col gap-4" onSubmit={handleSend}>
<label className={labelCls}>
Subject
<input
className="auth-input"
type="text"
value={subject}
onChange={(e) => setSubject(e.target.value)}
required
maxLength={150}
/>
<input className={inputCls} type="text" value={subject} onChange={(e) => setSubject(e.target.value)} required maxLength={150} />
</label>
<label className="auth-label">
<label className={labelCls}>
Message
<textarea
className="auth-input"
style={{ resize: "vertical" }}
value={body}
onChange={(e) => setBody(e.target.value)}
required
maxLength={2000}
rows={5}
/>
<textarea className={`${inputCls} resize-y`} value={body} onChange={(e) => setBody(e.target.value)} required maxLength={2000} rows={5} />
</label>
{sendError && <p className="contact-error">{sendError}</p>}
<button className="auth-submit-btn" type="submit" disabled={sending}>
{sendError && <p className="bg-[#fff0f0] border border-[#f5c6c6] text-[#c0392b] rounded-lg px-4 py-[0.65rem] text-[0.9rem]">{sendError}</p>}
<button className={submitBtnCls} type="submit" disabled={sending}>
{sending ? "Sending…" : "Send Message"}
</button>
</form>
@@ -114,33 +103,33 @@ export default function ContactPage() {
</div>
</div>
<div className="info-card">
<h2>Store Locations</h2>
<div className="bg-white rounded-2xl shadow-[0_4px_16px_rgba(0,0,0,0.08)] p-8">
<h2 className="text-[1.4rem] font-bold text-[#222] mb-4">Store Locations</h2>
{loading && <p>Loading locations...</p>}
{error && <p style={{ color: "red" }}>Failed to load locations: {error}</p>}
{!loading && !error && locations.length === 0 && <p>No store locations found.</p>}
{loading && <p className="text-[#666]">Loading locations...</p>}
{error && <p className="text-[#c0392b]">{error}</p>}
{!loading && !error && locations.length === 0 && <p className="text-[#666]">No store locations found.</p>}
{!loading && !error && locations.length > 0 && (
<div className="info-card-grid">
<div className="grid grid-cols-2 gap-4 max-[600px]:grid-cols-1">
{locations.map((location) => (
<article key={location.storeId} className="info-mini-card location-card">
<div className="location-card-image-wrapper">
<article key={location.storeId} className="rounded-xl border border-[#eee] overflow-hidden">
<div className="aspect-video overflow-hidden bg-[#f5f5f5]">
<img
src={getStoreImage(location)}
alt={location.storeName}
className="location-card-image"
className="w-full h-full object-cover"
onError={(e) => {
e.currentTarget.onerror = null;
e.currentTarget.src = "/images/pet-placeholder.png";
}}
/>
</div>
<div className="location-card-body">
<h3>{location.storeName}</h3>
<p>{location.address}</p>
<p>{location.phone}</p>
<p>{location.email}</p>
<div className="p-4">
<h3 className="font-bold text-[#222] mb-1">{location.storeName}</h3>
<p className="text-[0.85rem] text-[#666] mb-0.5">{location.address}</p>
<p className="text-[0.85rem] text-[#666] mb-0.5">{location.phone}</p>
<p className="text-[0.85rem] text-[#666]">{location.email}</p>
</div>
</article>
))}