Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-17 22:54:02 +00:00
4 changed files with 67 additions and 28 deletions

View File

@@ -87,7 +87,7 @@ const AboutPage = () => {
{ value: "24/7", title: "Emergency Service" },
]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/plumber-doing-victory-gesture_1368-6312.jpg"
imageSrc="http://img.b2bpic.net/free-photo/plumber-doing-victory-gesture_1368-6312.jpg?_wi=2"
imageAlt="professional towing owner with tow truck portrait"
mediaAnimation="blur-reveal"
/>
@@ -152,7 +152,7 @@ const AboutPage = () => {
handle: "Late Evening Breakdown",
testimonial: "Best tow service we have ever used. Super nice and picked the truck up in a short time. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg?_wi=2",
imageAlt: "satisfied customer woman smiling portrait",
},
{
@@ -161,7 +161,7 @@ const AboutPage = () => {
handle: "Repeat Customer",
testimonial: "I've used Shook Towing several times... he never fails to make a frustrating situation so much easier.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg?_wi=2",
imageAlt: "satisfied woman customer headshot portrait",
},
{
@@ -170,7 +170,7 @@ const AboutPage = () => {
handle: "Long-Term Trust",
testimonial: "Very helpful, great attitude, very fast. Price was awesome. I would trust no one else to tow my vehicles.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg?_wi=2",
imageAlt: "mature woman customer portrait smiling",
},
{
@@ -179,7 +179,7 @@ const AboutPage = () => {
handle: "Parking Lot Fix",
testimonial: "Richard basically diagnosed and fixed my car in the parking lot. Saved us time and money. Professional and patient.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/worker-gesturing-with-his-left-hand_1149-184.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-gesturing-with-his-left-hand_1149-184.jpg?_wi=2",
imageAlt: "satisfied man customer portrait headshot",
},
{
@@ -188,7 +188,7 @@ const AboutPage = () => {
handle: "Excellent Service",
testimonial: "Provided excellent service when we needed it most. Courteous, professional, and even gave us a ride to the dealership.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg?_wi=2",
imageAlt: "professional woman customer portrait headshot",
},
{
@@ -197,7 +197,7 @@ const AboutPage = () => {
handle: "Reliable Professional",
testimonial: "Professional, punctual, skilled, patient, and friendly. Best of all, his price was very reasonable.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg?_wi=2",
imageAlt: "satisfied man customer headshot 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 { Archivo } 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 { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Shook Towing | Fast, Fair, Professional Towing in Corpus Christi",
description: "Fast, friendly towing and roadside assistance 24/7 in Corpus Christi. Honest pricing, professional drivers, exceptional service when you need it most.",
keywords: "towing service Corpus Christi, roadside assistance, emergency towing, flatbed towing, vehicle transport, professional drivers",
metadataBase: new URL("https://shooktowing.com"),
alternates: {
canonical: "https://shooktowing.com",
},
openGraph: {
title: "Shook Towing | Fast & Fair Towing in Corpus Christi",
description: "Professional towing and roadside assistance available 24/7. Fast response, honest pricing, exceptional care.",
url: "https://shooktowing.com",
siteName: "Shook Towing",
type: "website",
images: [
{
url: "https://shooktowing.com/og-image.jpg",
alt: "Shook Towing professional tow truck and team",
},
],
},
twitter: {
card: "summary_large_image",
title: "Shook Towing | Fast & Fair Towing in Corpus Christi",
description: "Professional towing and roadside assistance available 24/7. Fast response, honest pricing, exceptional care.",
images: ["https://shooktowing.com/twitter-image.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={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -236,7 +236,7 @@ export default function HomePage() {
handle: "Late Evening Breakdown",
testimonial: "Best tow service we have ever used. Super nice and picked the truck up in a short time. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg?_wi=1",
},
{
id: "2",
@@ -244,7 +244,7 @@ export default function HomePage() {
handle: "Repeat Customer",
testimonial: "I've used Shook Towing several times... he never fails to make a frustrating situation so much easier.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg?_wi=1",
},
{
id: "3",
@@ -252,7 +252,7 @@ export default function HomePage() {
handle: "Long-Term Trust",
testimonial: "Very helpful, great attitude, very fast. Price was awesome. I would trust no one else to tow my vehicles.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg?_wi=1",
},
{
id: "4",
@@ -260,7 +260,7 @@ export default function HomePage() {
handle: "Parking Lot Fix",
testimonial: "Richard basically diagnosed and fixed my car in the parking lot. Saved us time and money. Professional and patient.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/worker-gesturing-with-his-left-hand_1149-184.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-gesturing-with-his-left-hand_1149-184.jpg?_wi=1",
},
{
id: "5",
@@ -268,7 +268,7 @@ export default function HomePage() {
handle: "Excellent Service",
testimonial: "Provided excellent service when we needed it most. Courteous, professional, and even gave us a ride to the dealership.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg?_wi=1",
},
{
id: "6",
@@ -276,7 +276,7 @@ export default function HomePage() {
handle: "Reliable Professional",
testimonial: "Professional, punctual, skilled, patient, and friendly. Best of all, his price was very reasonable.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg?_wi=1",
},
]}
showRating={true}
@@ -305,7 +305,7 @@ export default function HomePage() {
},
]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/plumber-doing-victory-gesture_1368-6312.jpg"
imageSrc="http://img.b2bpic.net/free-photo/plumber-doing-victory-gesture_1368-6312.jpg?_wi=1"
imageAlt="professional towing owner with tow truck portrait"
mediaAnimation="blur-reveal"
/>

View File

@@ -109,7 +109,7 @@ const ReviewsPage = () => {
handle: "Late Evening Breakdown",
testimonial: "Best tow service we have ever used. Super nice and picked the truck up in a short time. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg?_wi=3",
imageAlt: "satisfied customer woman smiling portrait",
},
{
@@ -118,7 +118,7 @@ const ReviewsPage = () => {
handle: "Repeat Customer",
testimonial: "I've used Shook Towing several times... he never fails to make a frustrating situation so much easier.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg?_wi=3",
imageAlt: "satisfied woman customer headshot portrait",
},
{
@@ -127,7 +127,7 @@ const ReviewsPage = () => {
handle: "Long-Term Trust",
testimonial: "Very helpful, great attitude, very fast. Price was awesome. I would trust no one else to tow my vehicles.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg?_wi=3",
imageAlt: "mature woman customer portrait smiling",
},
{
@@ -136,7 +136,7 @@ const ReviewsPage = () => {
handle: "Parking Lot Fix",
testimonial: "Richard basically diagnosed and fixed my car in the parking lot. Saved us time and money. Professional and patient.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/worker-gesturing-with-his-left-hand_1149-184.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/worker-gesturing-with-his-left-hand_1149-184.jpg?_wi=3",
imageAlt: "satisfied man customer portrait headshot",
},
{
@@ -145,7 +145,7 @@ const ReviewsPage = () => {
handle: "Excellent Service",
testimonial: "Provided excellent service when we needed it most. Courteous, professional, and even gave us a ride to the dealership.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg?_wi=3",
imageAlt: "professional woman customer portrait headshot",
},
{
@@ -154,7 +154,7 @@ const ReviewsPage = () => {
handle: "Reliable Professional",
testimonial: "Professional, punctual, skilled, patient, and friendly. Best of all, his price was very reasonable.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139106.jpg?_wi=3",
imageAlt: "satisfied man customer headshot portrait",
},
]}