Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "DaMan Handyman.co | Local Home Repair & Improvement Services", description: "Reliable handyman services you can trust. Fast, affordable, professional. Call 810-333-8736 for plumbing, carpentry, painting, electrical, roofing & more.", keywords: "handyman services, home repair, home improvement, plumbing, electrical, painting, carpentry, roofing, flooring, local handyman", metadataBase: new URL("https://damanhandyman.co"),
|
||||
alternates: {
|
||||
canonical: "https://damanhandyman.co"
|
||||
},
|
||||
openGraph: {
|
||||
title: "DaMan Handyman.co | Trusted Local Handyman Services", description: "Fast. Affordable. Professional. Get your home repairs done right. Call 810-333-8736 for a free estimate.", url: "https://damanhandyman.co", siteName: "DaMan Handyman.co", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "DaMan Handyman.co | Trusted Handyman Services", description: "Professional home repair & improvement. Fast response. Fair pricing. Call 810-333-8736"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "DaMan Handyman | Fast & Reliable Home Repair Services", description: "Professional handyman services in your area. Fast response times, transparent pricing, and quality workmanship guaranteed."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboard
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Facebook, Phone } from 'lucide-react';
|
||||
import { Facebook, Phone, Star } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -132,25 +132,42 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
<TestimonialCardSix
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "John Martinez", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg", imageAlt: "John Martinez"
|
||||
id: "1", name: "Gina", handle: "Punctuality Champion", testimonial: "DaMan showed up exactly on time for my plumbing repair. Professional, courteous, and the work was done right the first time. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", imageAlt: "Gina - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sarah Anderson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", imageAlt: "Sarah Anderson"
|
||||
id: "2", name: "Ree Ree", handle: "Communication Expert", testimonial: "Outstanding communication throughout the entire project. They kept me informed every step of the way and answered all my questions. Five stars!", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg", imageAlt: "Ree Ree - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "3", name: "Mike Thompson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Mike Thompson"
|
||||
id: "3", name: "Hussain", handle: "Value for Money", testimonial: "Best pricing I found in the area. No hidden fees, completely transparent quote, and the work quality exceeded expectations. Great value!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Hussain - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "4", name: "Robert Davis", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Robert Davis"
|
||||
id: "4", name: "Sotero", handle: "Quality Assured", testimonial: "The craftsmanship on my carpentry work was exceptional. Every detail was handled with care and precision. I'll definitely call them again!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Sotero - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "5", name: "Gina", handle: "Punctuality Champion", testimonial: "DaMan showed up exactly on time for my plumbing repair. Professional, courteous, and the work was done right the first time. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", imageAlt: "Gina - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "6", name: "Ree Ree", handle: "Communication Expert", testimonial: "Outstanding communication throughout the entire project. They kept me informed every step of the way and answered all my questions. Five stars!", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg", imageAlt: "Ree Ree - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "7", name: "Hussain", handle: "Value for Money", testimonial: "Best pricing I found in the area. No hidden fees, completely transparent quote, and the work quality exceeded expectations. Great value!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Hussain - satisfied customer", icon: Star
|
||||
},
|
||||
{
|
||||
id: "8", name: "Sotero", handle: "Quality Assured", testimonial: "The craftsmanship on my carpentry work was exceptional. Every detail was handled with care and precision. I'll definitely call them again!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Sotero - satisfied customer", icon: Star
|
||||
}
|
||||
]}
|
||||
cardTitle="Trusted by thousands of homeowners for reliable, professional handyman services"
|
||||
cardTag="See what our customers say"
|
||||
cardAnimation="blur-reveal"
|
||||
title="What Our Customers Say"
|
||||
description="Five-star reviews from homeowners who experienced our professional handyman services"
|
||||
tag="Testimonials"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
speed={40}
|
||||
topMarqueeDirection="left"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user