diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a57fed8..f3f335c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -239,7 +239,7 @@ export default function AboutPage() { handle: "Homeowner, Bixby", testimonial: "Premier General Contractors transformed our home. The attention to detail and professionalism were outstanding. Highly recommend to anyone looking for quality work.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-hispanic-woman-business-worker-smiling-confident-shake-hand-office_839833-33453.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-age-hispanic-woman-business-worker-smiling-confident-shake-hand-office_839833-33453.jpg?_wi=2", imageAlt: "happy homeowner satisfied renovation project", }, { @@ -248,7 +248,7 @@ export default function AboutPage() { handle: "Homeowner, Tulsa", testimonial: "We had an amazing experience with Premier. The team was punctual, professional, and delivered exceptional results. Best contractor investment we've made.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-woman-kitchen_197531-32481.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-woman-kitchen_197531-32481.jpg?_wi=2", imageAlt: "professional business portrait headshot", }, { @@ -257,7 +257,7 @@ export default function AboutPage() { handle: "Homeowner, Broken Arrow", testimonial: "From the first consultation to project completion, Premier was responsive and communicative. The rooms looked as good as new. Couldn't be happier.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-hispanic-woman-standing-yellow-background-smiling-positive-doing-ok-sign-with-hand-fingers-successful-expression_839833-32513.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-age-hispanic-woman-standing-yellow-background-smiling-positive-doing-ok-sign-with-hand-fingers-successful-expression_839833-32513.jpg?_wi=2", imageAlt: "woman portrait professional headshot smile", }, { @@ -266,7 +266,7 @@ export default function AboutPage() { handle: "Homeowner, Jenks", testimonial: "Premier handled our insurance restoration beautifully. They understood the process, worked with our insurance company, and made everything seamless.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg?_wi=2", imageAlt: "man professional portrait headshot", }, { @@ -275,7 +275,7 @@ export default function AboutPage() { handle: "Homeowner, Bixby", testimonial: "Had multiple contractors quote our project. Premier was the most professional and transparent. Fantastic workmanship. Will definitely call again.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/african-american-curly-businesswoman-standing-with-folded-hands-portrait-successful-confident-young-pretty-female-office-employer-suit-posing-work-business-company-management-concept_74855-6735.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/african-american-curly-businesswoman-standing-with-folded-hands-portrait-successful-confident-young-pretty-female-office-employer-suit-posing-work-business-company-management-concept_74855-6735.jpg?_wi=2", imageAlt: "woman professional portrait customer", }, { @@ -284,7 +284,7 @@ export default function AboutPage() { handle: "Homeowner, Tulsa", testimonial: "Exceptional craftsmanship and attention to detail. Premier went above and beyond on our drywall and paint project. Highly skilled team. Five stars all the way.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/crazy-hippie-man-happy-expression_1194-3939.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crazy-hippie-man-happy-expression_1194-3939.jpg?_wi=2", imageAlt: "man professional business portrait", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..868ecd8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Premier General Contractors | Bixby, OK Contractor Services", + description: "Premier General Contractors offers professional home repair, painting, drywall, and renovation services in Bixby, Tulsa, and surrounding areas. Licensed & Insured. Free estimates. Call (918) 625-0806.", + keywords: "general contractor Bixby OK, home repair Tulsa, drywall installation, painting contractor, home improvement contractor, licensed contractor Oklahoma", + metadataBase: new URL("https://premiergeneralcontractorsinc.com"), + alternates: { + canonical: "https://premiergeneralcontractorsinc.com", + }, + openGraph: { + title: "Premier General Contractors | Trusted Local Contractor", + description: "Reliable home improvements and contractor services in Bixby and Tulsa, OK. 5-star rated. Get your free estimate today.", + url: "https://premiergeneralcontractorsinc.com", + siteName: "Premier General Contractors Inc", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-man-with-safety-vest-showing-approval_23-2148269283.jpg", + alt: "Premier General Contractors - Professional home improvement services", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Premier General Contractors | Bixby, OK", + description: "Professional contractor services for home repair, painting, and renovation. Licensed & Insured. Free estimates.", + images: ["http://img.b2bpic.net/free-photo/close-up-man-with-safety-vest-showing-approval_23-2148269283.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}