Neue services

This commit is contained in:
2026-03-25 20:07:27 -05:00
parent 42e0971a13
commit bcf9dc541c
85 changed files with 8589 additions and 4832 deletions

View File

@@ -1,5 +1,6 @@
import React, { useEffect } from 'react';
import { motion } from 'framer-motion';
import React, { useEffect } from 'react';
import { motion } from 'framer-motion';
import SEO from '../../components/SEO';
const ContactPage: React.FC = () => {
useEffect(() => {
@@ -13,7 +14,14 @@ const ContactPage: React.FC = () => {
];
return (
<div className="pt-20 min-h-screen bg-background-light dark:bg-background-dark relative overflow-x-hidden">
<>
<SEO
title="Contact Bay Area IT | Free IT Assessment in Corpus Christi"
description="Talk to Bay Area IT about managed IT support, help desk coverage, business email, networking, and technology support across Corpus Christi and the Coastal Bend."
keywords={['contact Bay Area IT', 'Corpus Christi IT consultation', 'managed IT assessment']}
canonicalUrl="https://bayareait.services/contact"
/>
<div className="pt-20 min-h-screen bg-background-light dark:bg-background-dark relative overflow-x-hidden">
<div className="absolute top-0 left-0 right-0 h-[800px] bg-[radial-gradient(ellipse_80%_50%_at_50%_-20%,rgba(0,0,0,0.2),rgba(0,0,0,0))] dark:bg-[radial-gradient(ellipse_80%_50%_at_50%_-20%,rgba(255,255,255,0.25),rgba(255,255,255,0))] pointer-events-none" />
<div className="absolute bottom-0 right-0 w-[500px] h-[500px] bg-gray-100/50 dark:bg-white/5 rounded-full blur-[100px] pointer-events-none" />
{/* Hero */}
@@ -200,8 +208,9 @@ const ContactPage: React.FC = () => {
</div>
</div>
</section>
</div>
);
};
</div>
</>
);
};
export default ContactPage;