new pages created

This commit is contained in:
2025-12-06 00:56:15 +05:30
parent e87bdd45a1
commit 670db0c07a
52 changed files with 4761 additions and 278 deletions

View File

@@ -1,29 +1,15 @@
"use client"
import React, { useState } from 'react';
import { motion } from 'framer-motion';
import { Button } from '@/components/ui/button';
import { Card, CardContent } from '@/components/ui/card';
import { Badge } from '@/components/ui/badge';
import { Input } from '@/components/ui/input';
import { Textarea } from '@/components/ui/textarea';
import {
Headphones,
LifeBuoy,
Mail,
MessageSquare,
Phone,
MapPin,
Send,
CheckCircle,
Users,
Star
} from 'lucide-react';
import React from 'react';
import HeroSection from './_components/HeroSection';
import QuickActions from './_components/QuickActions';
import GetInTouch from './_components/GetInTouch';
import GlobalOffices from './_components/GlobalOffices';
import ContactForm from './_components/ContactForm';
import HappyCustomers from './_components/HappyCustomers';
import BookDemoSection from './_components/BookDemo';
import PartnerWithUsSection from './_components/PartnerWithUs';
import TechnicalSupportSection from './_components/TechnicalSupport';
import { ChooseWinixco, WeLoveToHearFromYou } from './_components/ChooseWinixco';
// Main Contact Page Component
export default function ContactUsPage() {
@@ -31,10 +17,13 @@ export default function ContactUsPage() {
<div className="min-h-screen bg-white">
<div className="px-4 sm:px-4 lg:px-10 py-16 md:py-24">
<HeroSection />
<QuickActions />
<GetInTouch />
<GlobalOffices />
<BookDemoSection />
<PartnerWithUsSection />
<TechnicalSupportSection />
<ContactForm />
<ChooseWinixco />
<WeLoveToHearFromYou />
<HappyCustomers />
</div>
</div>