This commit is contained in:
2026-06-23 15:00:30 -05:00
parent a3e0f4b29f
commit 576e6fcf0b
4 changed files with 162 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ export default function Contact() {
<div className="mx-auto max-w-7xl px-6 lg:px-8 relative z-10 text-center">
<h1 className="text-4xl md:text-6xl font-bold text-white font-display mb-6">Contact Us</h1>
<p className="text-xl text-gray-400 max-w-2xl mx-auto">
Get in touch for a free quote or schedule a service call today.
Get in touch or schedule a service call today.
</p>
</div>
</section>
@@ -57,7 +57,6 @@ export default function Contact() {
<div>
<h4 className="font-bold text-lg text-[color:var(--ink)]">Call Us</h4>
<p className="text-[color:var(--muted)] text-xl font-bold text-[color:var(--brand)]">(361) 855-2255</p>
<p className="text-sm text-gray-400">24/7 Emergency Support Available</p>
</div>
</div>
@@ -77,7 +76,7 @@ export default function Contact() {
</div>
<div>
<h4 className="font-bold text-lg text-[color:var(--ink)]">Business Hours</h4>
<p className="text-[color:var(--muted)]">Monday - Friday: 8:00 AM - 5:00 PM<br />Saturday & Sunday: Emergency Only</p>
<p className="text-[color:var(--muted)]">Monday - Friday: 8:00 AM - 5:00 PM<br />Saturday & Sunday: Closed</p>
</div>
</div>
</div>

View File

@@ -0,0 +1,79 @@
import { Metadata } from "next";
import Image from "next/image";
export const metadata: Metadata = {
title: "Privacy Policy | Budd Electric Co.",
description: "Privacy policy for Budd Electric Co., a family-owned electrical contractor in Corpus Christi, TX. Learn how we collect, use, and protect your information.",
};
export default function PrivacyPolicy() {
return (
<div className="bg-[color:var(--bg)]">
{/* PAGE HERO */}
<section className="bg-[color:var(--bg-dark)] py-20 relative overflow-hidden -mt-20 pt-44">
<div className="absolute inset-0 opacity-10">
<Image
src="/images/hero-bg.png"
alt=""
fill
priority
quality={40}
sizes="100vw"
className="object-cover object-center"
/>
</div>
<div className="mx-auto max-w-7xl px-6 lg:px-8 relative z-10 text-center">
<h1 className="text-4xl md:text-6xl font-bold text-white font-display mb-6">Privacy Policy</h1>
<p className="text-xl text-gray-400 max-w-2xl mx-auto">
Last updated: June 23, 2026
</p>
</div>
</section>
{/* CONTENT */}
<section className="py-24">
<div className="mx-auto max-w-3xl px-6 lg:px-8">
<div className="prose prose-lg max-w-none text-[color:var(--muted)] space-y-8">
<p>
Budd Electric Co. (&ldquo;we,&rdquo; &ldquo;us,&rdquo; or &ldquo;our&rdquo;) respects your privacy. This policy explains what information we collect through our website, how we use it, and your choices.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Information We Collect</h2>
<p>
We collect the information you voluntarily provide through our contact form, such as your name, email address, phone number, selected service type, and any message details. We may also collect basic technical information automatically, such as your browser type and general usage data, to help us operate and improve the site.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">How We Use Your Information</h2>
<p>
We use the information you submit solely to respond to your inquiries, provide quotes, schedule service, and communicate with you about our electrical services. We do not sell or rent your personal information to third parties.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Sharing of Information</h2>
<p>
We may share information only with trusted service providers who help us operate our website and email communications (for example, our email delivery provider), and only as needed to provide those services. We may disclose information if required by law.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Data Retention</h2>
<p>
We retain contact submissions only as long as necessary to respond to your request and for our normal business records.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Your Choices</h2>
<p>
You may contact us at any time to ask what information we hold about you or to request that we delete it.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Contact Us</h2>
<p>
If you have any questions about this Privacy Policy, contact us at <a href="mailto:buddelectric@grandecom.net" className="text-[color:var(--brand)] hover:underline">buddelectric@grandecom.net</a> or <a href="tel:+13618552255" className="text-[color:var(--brand)] hover:underline">(361) 855-2255</a>.
</p>
<p className="italic text-sm text-gray-400 mt-12 border-t border-gray-200 pt-8">
This policy is provided for general informational purposes and does not constitute legal advice. Budd Electric Co. recommends reviewing it with a qualified attorney.
</p>
</div>
</div>
</section>
</div>
);
}

View File

@@ -0,0 +1,79 @@
import { Metadata } from "next";
import Image from "next/image";
export const metadata: Metadata = {
title: "Terms of Service | Budd Electric Co.",
description: "Terms of service for the Budd Electric Co. website. Family-owned electrical contractor in Corpus Christi, TX since 1969.",
};
export default function TermsOfService() {
return (
<div className="bg-[color:var(--bg)]">
{/* PAGE HERO */}
<section className="bg-[color:var(--bg-dark)] py-20 relative overflow-hidden -mt-20 pt-44">
<div className="absolute inset-0 opacity-10">
<Image
src="/images/hero-bg.png"
alt=""
fill
priority
quality={40}
sizes="100vw"
className="object-cover object-center"
/>
</div>
<div className="mx-auto max-w-7xl px-6 lg:px-8 relative z-10 text-center">
<h1 className="text-4xl md:text-6xl font-bold text-white font-display mb-6">Terms of Service</h1>
<p className="text-xl text-gray-400 max-w-2xl mx-auto">
Last updated: June 23, 2026
</p>
</div>
</section>
{/* CONTENT */}
<section className="py-24">
<div className="mx-auto max-w-3xl px-6 lg:px-8">
<div className="prose prose-lg max-w-none text-[color:var(--muted)] space-y-8">
<p>
These Terms of Service (&ldquo;Terms&rdquo;) govern your use of the Budd Electric Co. website. By accessing or using this site, you agree to these Terms.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Use of the Website</h2>
<p>
This website is provided for informational purposes to learn about Budd Electric Co.&rsquo;s electrical services and to contact us. You agree to use the site only for lawful purposes.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">No Guarantee of Service</h2>
<p>
Submitting a contact form or request does not create a binding agreement for services. All electrical work is subject to a separate written estimate and agreement. Pricing, availability, and scheduling are confirmed directly with our team.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Intellectual Property</h2>
<p>
All content on this website, including text, logos, and images, is the property of Budd Electric Co. or its licensors and may not be reproduced without permission.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Disclaimer of Warranties</h2>
<p>
This website is provided &ldquo;as is&rdquo; without warranties of any kind. We do not guarantee that the site will be uninterrupted or error-free.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Limitation of Liability</h2>
<p>
Budd Electric Co. is not liable for any indirect or incidental damages arising from your use of this website.
</p>
<h2 className="text-2xl font-bold text-[color:var(--ink)] font-display mt-12">Contact</h2>
<p>
Questions about these Terms can be directed to <a href="mailto:buddelectric@grandecom.net" className="text-[color:var(--brand)] hover:underline">buddelectric@grandecom.net</a> or <a href="tel:+13618552255" className="text-[color:var(--brand)] hover:underline">(361) 855-2255</a>.
</p>
<p className="italic text-sm text-gray-400 mt-12 border-t border-gray-200 pt-8">
These Terms are provided for general informational purposes and do not constitute legal advice. Budd Electric Co. recommends reviewing them with a qualified attorney.
</p>
</div>
</div>
</section>
</div>
);
}

View File

@@ -219,8 +219,8 @@ export default function Footer() {
<div className="border-t border-white/5 pt-8 flex flex-col md:flex-row justify-between items-center text-gray-500 text-xs uppercase tracking-wider">
<p>&copy; {new Date().getFullYear()} Budd Electric Co. TECL #17007</p>
<div className="flex gap-6 mt-4 md:mt-0">
<Link href="https://www.thryv.com/client-privacy-policy/" target="_blank" rel="noopener noreferrer" className="hover:text-white transition-colors">Privacy Policy</Link>
<Link href="https://www.thryv.com/client-terms-of-use/" target="_blank" rel="noopener noreferrer" className="hover:text-white transition-colors">Terms of Service</Link>
<Link href="/privacy-policy" className="hover:text-white transition-colors">Privacy Policy</Link>
<Link href="/terms-of-service" className="hover:text-white transition-colors">Terms of Service</Link>
</div>
</div>
</div>