Merge version_2 into main #4
@@ -1,50 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Plumbing in San Diego | John Padilla Plumbing Inc", description: "24/7 emergency plumbing in San Diego. 16+ years experience, 4.9★ rated. Licensed, trusted, family-owned. Fast response times for residential & commercial.", keywords: "plumber San Diego, emergency plumbing, leak repair, drain cleaning, water heater, licensed plumber", openGraph: {
|
||||
title: "Professional Plumbing in San Diego | John Padilla Plumbing Inc", description: "24/7 emergency plumbing services in San Diego. Fast response, fair pricing, licensed & insured.", type: "website", siteName: "John Padilla Plumbing Inc"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Plumbing in San Diego | John Padilla Plumbing Inc", description: "24/7 emergency plumbing services. Expert repairs, trusted by San Diego families and businesses."},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { AlertCircle, Award, Star, ThumbsUp, CheckCircle, Phone } from 'lucide-react';
|
||||
import { AlertCircle, Award, Star, ThumbsUp, CheckCircle, Phone, Zap } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -135,7 +135,7 @@ export default function LandingPage() {
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="What Our Customers Say"
|
||||
description="Real testimonials from satisfied residential and commercial clients across San Diego."
|
||||
description="30–45 minute average response time • Available 24/7\n\nReal testimonials from satisfied residential and commercial clients across San Diego."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Jennifer Walsh", role: "Homeowner, Mission Valley", testimonial: "After a pipe burst at 2 AM, John Padilla responded within 20 minutes and fixed everything professionally. Couldn't ask for better service!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4"
|
||||
|
||||
Reference in New Issue
Block a user