From fbaede89950e21fdf8b25b55d11b0b040371ed25 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:10:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4d7b2db..2fb8679 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,10 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Open_Sans } 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"], }); @@ -20,13 +14,15 @@ const openSans = Open_Sans({ }); export const metadata: Metadata = { - title: "Fellsway Gas & Service Inc | Expert Auto Repair & Maintenance", description: "Professional auto repair and gas services from trusted mechanics. Oil changes, diagnostics, tire service, and more. Visit us today for expert vehicle care.", keywords: "auto repair, mechanic, oil change, car maintenance, tire service, gas services, automotive, vehicle care", metadataBase: new URL("https://fellsway-gas-service.com"), + title: "Fellsway Gas & Service Inc | Expert Auto Repair & Maintenance", description: "Professional auto repair and gas services from trusted mechanics. Oil changes, diagnostics, tire service, and more. Visit us today for expert vehicle care. Located at 285 Fellsway W, Medford, MA 02155.", keywords: "auto repair, mechanic, oil change, car maintenance, tire service, gas services, automotive, vehicle care, Medford MA", metadataBase: new URL("https://fellsway-gas-service.com"), alternates: { - canonical: "https://fellsway-gas-service.com"}, + canonical: "https://fellsway-gas-service.com" + }, openGraph: { title: "Fellsway Gas & Service Inc | Expert Auto Repair", description: "Professional auto repair and maintenance services you can trust", url: "https://fellsway-gas-service.com", siteName: "Fellsway Gas & Service Inc", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/young-auto-mechanic-using-compressor-while-maintaining-ac-unit-car-workshop_637285-4285.jpg", alt: "Professional mechanic at work"}, + url: "http://img.b2bpic.net/free-photo/young-auto-mechanic-using-compressor-while-maintaining-ac-unit-car-workshop_637285-4285.jpg", alt: "Professional mechanic at work" + }, ], }, twitter: { @@ -47,7 +43,7 @@ export default function RootLayout({ {children} -- 2.49.1 From a1577fbe0715a01bbbbefe535541472843519ca5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:10:33 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 46 +++++++++++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f5140ff..2cfded8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Wrench, Shield, Settings, Star, Phone } from "lucide-react"; +import { Wrench, Shield, Settings, Star, Phone, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -28,12 +28,12 @@ export default function LandingPage() { @@ -41,7 +41,7 @@ export default function LandingPage() {
-- 2.49.1