import React from 'react';
import "@/app/(company)/contact/style.css"
import { Metadata } from 'next';
import ContactFrom from '@/app/(company)/contact/components/ContactFrom';
import ContactLocation from '@/app/(company)/contact/components/ContactLocation';



export const metadata: Metadata = {
    title: "Contact Fruxinfo | Web, App & Digital Marketing Company",
    description: "Contact Fruxinfo to discuss web development, mobile apps, SEO, and digital marketing services. Reach our Ahmedabad team to start your project.",
    alternates: { canonical: "https://www.fruxinfo.com/contact" },
};

export default function page() {
  return (
    <div>
        <ContactFrom/>
        <ContactLocation/>
    </div>
  )
}
