Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-16 18:09:33 +00:00
4 changed files with 61 additions and 22 deletions

View File

@@ -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",
},
]}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -126,7 +126,7 @@ export default function HomePage() {
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-man-with-safety-vest-showing-approval_23-2148269283.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-man-with-safety-vest-showing-approval_23-2148269283.jpg?_wi=1"
imageAlt="Professional home contractor at work"
showDimOverlay={true}
showBlur={true}
@@ -378,7 +378,7 @@ export default function HomePage() {
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=1",
},
{
id: "testimonial-2",
@@ -387,7 +387,7 @@ export default function HomePage() {
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=1",
},
{
id: "testimonial-3",
@@ -396,7 +396,7 @@ export default function HomePage() {
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=1",
},
{
id: "testimonial-4",
@@ -405,7 +405,7 @@ export default function HomePage() {
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=1",
},
{
id: "testimonial-5",
@@ -414,7 +414,7 @@ export default function HomePage() {
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=1",
},
{
id: "testimonial-6",
@@ -423,7 +423,7 @@ export default function HomePage() {
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=1",
},
]}
showRating={true}

View File

@@ -113,7 +113,7 @@ export default function ServicesPage() {
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-man-with-safety-vest-showing-approval_23-2148269283.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-man-with-safety-vest-showing-approval_23-2148269283.jpg?_wi=2"
imageAlt="Premier General Contractors - Professional services"
showDimOverlay={true}
showBlur={true}