'use client'; import React from 'react'; import Image from 'next/image'; import GSAPAnimator from '@/components/GSAPAnimator'; import dynamic from 'next/dynamic'; const MapSection = dynamic(() => import('@/components/MapSection'), { ssr: false }); export default function ContactsPage() { return (
{/* ── HERO ── */}
{/* Background photo */}
{/* Accent blobs */}
{/* Grid texture */}
Contact

Let's build
something smart.

Tell us about your store and your goals. Our team will get back to you within one business day.

{/* Quick contact chips */}
{[ { label: 'loyalydigital@gmail.com', href: 'mailto:loyalydigital@gmail.com' }, { label: 'Coimbatore, TN', href: undefined }, ].map((c) => { const inner = ( {c.label} ); return c.href ? {inner} : {inner}; })}
{/* ── MAP ── */} {/* The Get in Touch form is rendered globally above the footer via layout.tsx */}
); }