"use client"; import { IconCalendar, IconMailFilled } from "@tabler/icons-react"; import { motion } from "motion/react"; import Image from "next/image"; import Link from "next/link"; import type React from "react"; import { useId } from "react"; import { cn } from "@/lib/utils"; export function ContactFormGridWithDetails() { return (

Contact

We'd love to hear from you!

Schedule a meeting with us, or send us an email.

Schedule a Meeting
or
rohan@surfsense.com
world map
); } const Pin = ({ className }: { className?: string }) => { return (
We are here
<>
<>
); }; export const FeatureIconContainer = ({ children, className, }: { children: React.ReactNode; className?: string; }) => { return (
{children}
); }; export const Grid = ({ pattern, size }: { pattern?: number[][]; size?: number }) => { const p = pattern ?? [ [9, 3], [8, 5], [10, 2], [7, 4], [9, 6], ]; return (
); }; export function GridPattern({ width, height, x, y, squares, ...props }: any) { const patternId = useId(); return ( ); }