88 lines
3.7 KiB
TypeScript
88 lines
3.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import Link from "next/link";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
import {
|
|
Heart,
|
|
Phone,
|
|
} from "lucide-react";
|
|
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Reviews", id: "/reviews" },
|
|
];
|
|
|
|
export default function ReviewsPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="none"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Peter Tavener"
|
|
navItems={navItems}
|
|
button={{
|
|
text: "Call Now", href: "tel:0733944918"}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="reviews" data-section="reviews">
|
|
<TestimonialCardTwelve
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg", imageAlt: "Sarah Mitchell"},
|
|
{
|
|
id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing_1187-1543.jpg", imageAlt: "Michael Chen"},
|
|
{
|
|
id: "3", name: "Jennifer Walsh", imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-businessman-leaning-knees_1262-5774.jpg", imageAlt: "Jennifer Walsh"},
|
|
{
|
|
id: "4", name: "David Thompson", imageSrc: "http://img.b2bpic.net/free-photo/happy-successful-young-business-woman-standing-with-arms-folded-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-10036.jpg", imageAlt: "David Thompson"},
|
|
]}
|
|
cardTitle="Work conducted well and pricing reasonable. A young man, Tyson arrived and did a wonderful job from start to finish. Definitely our 'go to' people for plumbing needs."
|
|
cardTag="Trusted by local homeowners"
|
|
cardTagIcon={Heart}
|
|
cardAnimation="blur-reveal"
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="reviews-cta" data-section="reviews-cta">
|
|
<ContactCTA
|
|
tag="Join Our Satisfied Customers"
|
|
tagIcon={Phone}
|
|
title="Ready to Experience Great Service?"
|
|
description="With 4.9 stars and 86+ Google reviews, Peter Tavener Plumbing is your trusted choice for reliable, honest plumbing services in Brisbane."
|
|
buttons={[
|
|
{ text: "Call (07) 3394 4918", href: "tel:0733944918" },
|
|
{ text: "Request a Quote", href: "/contact" },
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="Peter Tavener Plumbing"
|
|
copyrightText="© 2025 Peter Tavener Plumbing Services Pty Ltd. 9 Hamel Rd, Holland Park West QLD 4121. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |