Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 96351d39a8 | |||
| 3d2a6ee0b7 | |||
| 59f44d6c2a | |||
| 79381af694 | |||
| d87aa37464 |
171
src/app/about/page.tsx
Normal file
171
src/app/about/page.tsx
Normal file
@@ -0,0 +1,171 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { Award, Heart, Clock, Users, AlertTriangle } from 'lucide-react';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="medium"
|
||||
background="blurBottom"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Barry's Emergency Plumbing"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Why Us", id: "why-us" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Service Area", id: "service-area" },
|
||||
{ name: "About", id: "/about" }
|
||||
]}
|
||||
button={{ text: "Call Now", href: "tel:+14023831633" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-hero" data-section="about-hero">
|
||||
<SplitAbout
|
||||
title="About Barry's Emergency Plumbing"
|
||||
description="We're a family-owned emergency plumbing company dedicated to serving Bellevue and the surrounding Omaha metro area with prompt, professional, and affordable plumbing solutions."
|
||||
tag="Our Story"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-mechanic-making-phone-call-while-relaxing-office-repair-shop_637285-11573.jpg?_wi=2"
|
||||
imageAlt="Barry's Emergency Plumbing team"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Local Roots", description: "Founded by local plumbers who believe in honest work and genuine customer care.", icon: Heart
|
||||
},
|
||||
{
|
||||
title: "Always Available", description: "24/7 emergency response because plumbing emergencies don't wait for business hours.", icon: Clock
|
||||
},
|
||||
{
|
||||
title: "Trusted Team", description: "Licensed, insured professionals with years of experience solving any plumbing challenge.", icon: Award
|
||||
},
|
||||
{
|
||||
title: "Community Focused", description: "We're invested in Bellevue and serve our neighbors with the same care we'd want for our own families.", icon: Users
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="values" data-section="values">
|
||||
<FeatureCardTwelve
|
||||
title="Our Core Values"
|
||||
description="These principles guide everything we do for our customers."
|
||||
tag="What We Stand For"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "integrity", label: "Integrity", title: "Honest Work, Every Time", items: ["Transparent pricing with no hidden fees", "Clear communication about repairs needed", "Only recommend work that's necessary"]
|
||||
},
|
||||
{
|
||||
id: "reliability", label: "Reliability", title: "You Can Count On Us", items: ["Same-day or next-day service", "On-time arrivals, every appointment", "Work guaranteed to last"]
|
||||
},
|
||||
{
|
||||
id: "excellence", label: "Excellence", title: "Quality in Everything", items: ["Certified and continuously trained professionals", "Latest tools and technology", "100% satisfaction commitment"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-portrait-smiley-woman_23-2148486217.jpg?_wi=2", imageAlt: "happy customer portrait smiling professional"
|
||||
},
|
||||
{
|
||||
id: "2", name: "James Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-curly-hair-posing_23-2148728584.jpg?_wi=2", imageAlt: "professional portrait smiling woman"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Jennifer Adams", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg?_wi=2", imageAlt: "professional headshot man smiling"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12688.jpg?_wi=2", imageAlt: "satisfied customer portrait headshot"
|
||||
},
|
||||
{
|
||||
id: "5", name: "David Thompson", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-portrait-smiley-woman_23-2148486217.jpg?_wi=3", imageAlt: "happy customer portrait smiling professional"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Lisa Patterson", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-curly-hair-posing_23-2148728584.jpg?_wi=3", imageAlt: "professional portrait smiling woman"
|
||||
}
|
||||
]}
|
||||
cardTitle="What Our Customers Say"
|
||||
cardTag="4.9 ⭐ Rating on Google Reviews"
|
||||
cardAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactCTA
|
||||
tag="Ready to Experience the Difference?"
|
||||
tagIcon={AlertTriangle}
|
||||
tagAnimation="slide-up"
|
||||
title="Contact Barry's Emergency Plumbing Today"
|
||||
description="Whether you need emergency repairs or preventive maintenance, our friendly team is ready to help. Call us 24/7 or request a service appointment online."
|
||||
buttons={[
|
||||
{ text: "Call (402) 383-1633", href: "tel:+14023831633" },
|
||||
{ text: "Request Service", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "downward-rays-animated" }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Service", items: [
|
||||
{ label: "Emergency Plumbing", href: "#services" },
|
||||
{ label: "Drain Cleaning", href: "#services" },
|
||||
{ label: "Water Heater Repair", href: "#services" },
|
||||
{ label: "Leak Detection", href: "#services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Reviews", href: "#reviews" },
|
||||
{ label: "Service Area", href: "#service-area" },
|
||||
{ label: "Contact", href: "tel:+14023831633" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Call: (402) 383-1633", href: "tel:+14023831633" },
|
||||
{ label: "1442 Harlan Dr #1643, Bellevue, NE 68005", href: "#" },
|
||||
{ label: "Open 24/7 - Emergency Service Always Available", href: "#" },
|
||||
{ label: "Licensed & Insured", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Barry's Emergency Plumbing. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -31,7 +31,8 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Why Us", id: "why-us" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Service Area", id: "service-area" }
|
||||
{ name: "Service Area", id: "service-area" },
|
||||
{ name: "About", id: "/about" }
|
||||
]}
|
||||
button={{ text: "Call Now", href: "tel:+14023831633" }}
|
||||
animateOnLoad={true}
|
||||
@@ -86,7 +87,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-mechanic-making-phone-call-while-relaxing-office-repair-shop_637285-11573.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-mechanic-making-phone-call-while-relaxing-office-repair-shop_637285-11573.jpg?_wi=1"
|
||||
imageAlt="Professional emergency plumbing service"
|
||||
bulletPoints={[
|
||||
{
|
||||
@@ -206,7 +207,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#why-us" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Reviews", href: "#reviews" },
|
||||
{ label: "Service Area", href: "#service-area" },
|
||||
{ label: "Contact", href: "tel:+14023831633" }
|
||||
|
||||
Reference in New Issue
Block a user