Seed: services template (18 files)
This commit is contained in:
@@ -69,7 +69,7 @@ export default function ContactPage() {
|
||||
<CardContent className="p-6">
|
||||
<div className="flex items-start gap-4">
|
||||
<div className="w-10 h-10 rounded-lg bg-primary/10 flex items-center justify-center shrink-0">
|
||||
<MapPin className={`h-5 w-5 text-primary \${i === 0 ? "animate-bounce" : ""}`} />
|
||||
<MapPin className={`h-5 w-5 text-primary ${i === 0 ? "animate-bounce" : ""}`} />
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-bold">{office.city}</h3>
|
||||
@@ -182,7 +182,7 @@ export default function ContactPage() {
|
||||
<div className="backdrop-blur-sm bg-card/80 border border-border/50 rounded-2xl p-6">
|
||||
<Accordion type="single" collapsible className="space-y-4">
|
||||
{faqs.map((faq, i) => (
|
||||
<AccordionItem key={i} value={`faq-\${i}`} className="bg-background border rounded-lg px-6">
|
||||
<AccordionItem key={i} value={`faq-${i}`} className="bg-background border rounded-lg px-6">
|
||||
<AccordionTrigger className="text-sm font-medium hover:no-underline">{faq.q}</AccordionTrigger>
|
||||
<AccordionContent className="text-sm text-muted-foreground leading-relaxed">
|
||||
{faq.a}
|
||||
|
||||
Reference in New Issue
Block a user