Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -43,42 +43,42 @@ export default function MenuPage() {
|
||||
id: "1",
|
||||
name: "Classic Cheeseburger",
|
||||
price: "$9.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-cheeseburger-with-meat-tomatoes-green-salad-dark-background-fast-food-meal-snack-french-fries-dinner-dish-sandwich_140725-156237.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-cheeseburger-with-meat-tomatoes-green-salad-dark-background-fast-food-meal-snack-french-fries-dinner-dish-sandwich_140725-156237.jpg?_wi=2",
|
||||
imageAlt: "classic cheeseburger melted cheese beef patty",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Bacon Patty Melt",
|
||||
price: "$11.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-english-breakfast-with-fried-egg-bacon-sausages-beans_123827-37145.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-english-breakfast-with-fried-egg-bacon-sausages-beans_123827-37145.jpg?_wi=2",
|
||||
imageAlt: "bacon patty melt sandwich grilled bread crispy",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Crispy Onion Rings",
|
||||
price: "$4.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fastfood-arrangement_23-2149235969.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fastfood-arrangement_23-2149235969.jpg?_wi=2",
|
||||
imageAlt: "crispy golden onion rings fried appetizer",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Double Stack Burger",
|
||||
price: "$13.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-burger-with-olives-cheese-different-vegetables-inside-round-pan-bright-floor_140725-11674.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-burger-with-olives-cheese-different-vegetables-inside-round-pan-bright-floor_140725-11674.jpg?_wi=2",
|
||||
imageAlt: "fresh gourmet burger close up food photography",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Mushroom Swiss Burger",
|
||||
price: "$10.99",
|
||||
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=2",
|
||||
imageAlt: "huge homemade burger thick patty lettuce tomato",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Spicy Jalapeño Burger",
|
||||
price: "$10.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-cheeseburger-with-meat-tomatoes-green-salad-dark-background-fast-food-meal-snack-french-fries-dinner-dish-sandwich_140725-156237.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-cheeseburger-with-meat-tomatoes-green-salad-dark-background-fast-food-meal-snack-french-fries-dinner-dish-sandwich_140725-156237.jpg?_wi=3",
|
||||
imageAlt: "classic cheeseburger melted cheese beef patty",
|
||||
},
|
||||
]}
|
||||
@@ -116,7 +116,7 @@ export default function MenuPage() {
|
||||
required: true,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
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=2"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Place Order"
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function HomePage() {
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-burger-with-olives-cheese-different-vegetables-inside-round-pan-bright-floor_140725-11674.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-burger-with-olives-cheese-different-vegetables-inside-round-pan-bright-floor_140725-11674.jpg?_wi=1"
|
||||
imageAlt="Fresh made-to-order burger"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -82,7 +82,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="I BurgerLand restaurant interior"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="blur-reveal"
|
||||
@@ -96,21 +96,21 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "huge homemade burger thick patty lettuce tomato",
|
||||
},
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "fast food drive through window 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=1",
|
||||
imageAlt: "friendly restaurant staff smiling employees helpful",
|
||||
},
|
||||
]}
|
||||
@@ -129,21 +129,21 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Classic Cheeseburger",
|
||||
price: "$9.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-cheeseburger-with-meat-tomatoes-green-salad-dark-background-fast-food-meal-snack-french-fries-dinner-dish-sandwich_140725-156237.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-cheeseburger-with-meat-tomatoes-green-salad-dark-background-fast-food-meal-snack-french-fries-dinner-dish-sandwich_140725-156237.jpg?_wi=1",
|
||||
imageAlt: "classic cheeseburger melted cheese beef patty",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Bacon Patty Melt",
|
||||
price: "$11.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-english-breakfast-with-fried-egg-bacon-sausages-beans_123827-37145.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-english-breakfast-with-fried-egg-bacon-sausages-beans_123827-37145.jpg?_wi=1",
|
||||
imageAlt: "bacon patty melt sandwich grilled bread crispy",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Crispy Onion Rings",
|
||||
price: "$4.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fastfood-arrangement_23-2149235969.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fastfood-arrangement_23-2149235969.jpg?_wi=1",
|
||||
imageAlt: "crispy golden onion rings fried appetizer",
|
||||
},
|
||||
]}
|
||||
@@ -248,7 +248,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Send Request"
|
||||
|
||||
Reference in New Issue
Block a user