From c29936212371b955046b5269dad13d8124b4e502 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:35:55 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f73ffeb..560ec23 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -81,7 +81,7 @@ export default function AboutPage() { { value: "4.5★", title: "Average Rating" }, ]} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/group-boys-girls-bar_641386-35.jpg" + imageSrc="http://img.b2bpic.net/free-photo/group-boys-girls-bar_641386-35.jpg?_wi=2" imageAlt="I BurgerLand restaurant interior" mediaAnimation="slide-up" metricsAnimation="blur-reveal" @@ -95,21 +95,21 @@ export default function AboutPage() { id: "1", title: "Huge Fresh Burgers", tags: ["Made to Order", "Premium Quality"], - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-close-up-black-burger-fries-wooden-board_23-2148238519.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-close-up-black-burger-fries-wooden-board_23-2148238519.jpg?_wi=3", imageAlt: "Huge fresh burgers", }, { id: "2", title: "Fast Drive-Through Service", tags: ["Quick Pickup", "Convenient"], - imageSrc: "http://img.b2bpic.net/free-photo/man-woman-enjoying-takeaway-food-street_23-2149025841.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-woman-enjoying-takeaway-food-street_23-2149025841.jpg?_wi=3", imageAlt: "Fast drive-through service", }, { id: "3", title: "Friendly Local Staff", tags: ["Community Focused", "Welcoming"], - imageSrc: "http://img.b2bpic.net/free-photo/barista-woman-coffee-shop-standing-by-bartender_1303-31235.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/barista-woman-coffee-shop-standing-by-bartender_1303-31235.jpg?_wi=2", imageAlt: "Friendly local staff", }, ]} -- 2.49.1 From 16526a0a05f6b9091828e06738ed6d70ac5f096b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:35:55 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 10bb36f..2067573 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -103,7 +103,7 @@ export default function ContactPage() { required: false, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-concept_23-2148152315.jpg" + imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-concept_23-2148152315.jpg?_wi=2" mediaAnimation="slide-up" mediaPosition="right" buttonText="Send Request" -- 2.49.1 From 616a385396d0494bb7063f74217a070eb7573453 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:35:56 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..4dd91d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "I BurgerLand - Best Burgers in Lincoln, Arkansas", + description: "Enjoy fresh made-to-order burgers, fast drive-through service, and friendly local hospitality at I BurgerLand in Lincoln, AR. 4.5★ rated.", + keywords: "burgers in Lincoln AR, best burger Lincoln Arkansas, drive through burger Lincoln, Lincoln AR restaurants, American restaurant, burger restaurant near me", + metadataBase: new URL("https://iburgerland.com"), + alternates: { + canonical: "https://iburgerland.com", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "I BurgerLand - Lincoln's Favorite Burger Spot", + description: "Fresh made-to-order burgers, friendly service, quick drive-through. Visit I BurgerLand today!", + url: "https://iburgerland.com", + siteName: "I BurgerLand", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-burger-with-olives-cheese-different-vegetables-inside-round-pan-bright-floor_140725-11674.jpg", + alt: "Fresh made-to-order burger", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "I BurgerLand - Best Burgers in Lincoln", + description: "Fresh burgers. Friendly service. Made to order.", + images: ["http://img.b2bpic.net/free-photo/top-view-burger-with-olives-cheese-different-vegetables-inside-round-pan-bright-floor_140725-11674.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}