Merge version_1 into main #1
@@ -69,7 +69,7 @@ export default function AboutPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-fruits-vegetables_23-2148145567.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-fruits-vegetables_23-2148145567.jpg?_wi=2"
|
||||
imageAlt="KFC kitchen professionals preparing food"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -114,7 +114,7 @@ export default function AboutPage() {
|
||||
tag: "Family Meals",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/waiter-serving-cup-coffee-customer_1170-634.jpg",
|
||||
avatarAlt: "Sarah Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-serving-cup-coffee-customer_1170-634.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-serving-cup-coffee-customer_1170-634.jpg?_wi=2",
|
||||
imageAlt: "Happy family enjoying KFC chicken",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function AboutPage() {
|
||||
tag: "Quick Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-dipping-chicken-croquette-into-sauce-beer-setup-with-nuts_140725-10810.jpg",
|
||||
avatarAlt: "Michael Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-dipping-chicken-croquette-into-sauce-beer-setup-with-nuts_140725-10810.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-dipping-chicken-croquette-into-sauce-beer-setup-with-nuts_140725-10810.jpg?_wi=2",
|
||||
imageAlt: "Professional enjoying chicken meal",
|
||||
},
|
||||
{
|
||||
@@ -138,7 +138,7 @@ export default function AboutPage() {
|
||||
tag: "Food Quality",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-food-plate_23-2149152883.jpg",
|
||||
avatarAlt: "Emily Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-food-plate_23-2149152883.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-food-plate_23-2149152883.jpg?_wi=2",
|
||||
imageAlt: "Food enthusiast enjoying chicken",
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@ export default function AboutPage() {
|
||||
tag: "Loyalty",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumb-up-shirt-cardigan-looking-cheery-front-view_176474-110852.jpg",
|
||||
avatarAlt: "David Kim",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumb-up-shirt-cardigan-looking-cheery-front-view_176474-110852.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumb-up-shirt-cardigan-looking-cheery-front-view_176474-110852.jpg?_wi=2",
|
||||
imageAlt: "Loyal customer enjoying KFC",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -44,7 +44,7 @@ export default function ContactPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-fruits-vegetables_23-2148145567.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-fruits-vegetables_23-2148145567.jpg?_wi=3"
|
||||
imageAlt="Fresh KFC chicken preparation"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
|
||||
@@ -1,24 +1,44 @@
|
||||
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: "KFC - Finger Lickin' Good Fried Chicken & Delivery",
|
||||
description: "Order KFC's famous fried chicken online for fast delivery. 75+ years of delicious signature recipes. Find locations, view menu, and enjoy exclusive offers.",
|
||||
keywords: "fried chicken, KFC, order online, chicken delivery, chicken buckets, chicken burgers",
|
||||
openGraph: {
|
||||
title: "KFC - Finger Lickin' Good Fried Chicken",
|
||||
description: "Discover the legendary taste of KFC. Order our signature fried chicken, buckets, and combos online for delivery or pickup.",
|
||||
siteName: "KFC",
|
||||
type: "website",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +47,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 +61,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -73,7 +73,7 @@ export default function LocationsPage() {
|
||||
{
|
||||
title: "Downtown Plaza",
|
||||
description: "Central location with dine-in seating for 60+ guests. Open 10am-11pm daily. Free parking available.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg?_wi=2",
|
||||
imageAlt: "Downtown KFC location",
|
||||
button: {
|
||||
text: "Get Directions",
|
||||
@@ -83,7 +83,7 @@ export default function LocationsPage() {
|
||||
{
|
||||
title: "Riverside Mall",
|
||||
description: "Convenient mall location with quick service counter. Open 11am-10pm daily. Large parking lot.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg?_wi=4",
|
||||
imageAlt: "Riverside Mall KFC location",
|
||||
button: {
|
||||
text: "Get Directions",
|
||||
@@ -93,7 +93,7 @@ export default function LocationsPage() {
|
||||
{
|
||||
title: "Highway Express",
|
||||
description: "Drive-thru and takeout focused location. Open 9am-11:30pm daily. Quick service, perfect for on-the-go.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454905.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454905.jpg?_wi=3",
|
||||
imageAlt: "Highway Express KFC drive-thru",
|
||||
button: {
|
||||
text: "Get Directions",
|
||||
@@ -113,7 +113,7 @@ export default function LocationsPage() {
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-man-sitting-with-hands-clasped_482257-121953.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-man-sitting-with-hands-clasped_482257-121953.jpg?_wi=2"
|
||||
imageAlt="KFC restaurant counter"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function MenuPage() {
|
||||
price: "$24.99",
|
||||
rating: 5,
|
||||
reviewCount: "12.5k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg?_wi=2",
|
||||
imageAlt: "Original recipe fried chicken bucket",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function MenuPage() {
|
||||
price: "$14.99",
|
||||
rating: 5,
|
||||
reviewCount: "8.9k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg?_wi=2",
|
||||
imageAlt: "Crispy chicken burger with sides",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function MenuPage() {
|
||||
price: "$44.99",
|
||||
rating: 5,
|
||||
reviewCount: "15.2k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454905.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454905.jpg?_wi=2",
|
||||
imageAlt: "Complete family meal combo",
|
||||
},
|
||||
]}
|
||||
@@ -133,7 +133,7 @@ export default function MenuPage() {
|
||||
{
|
||||
title: "Hot Wings Combo",
|
||||
description: "Spicy, crispy wings served with fries, coleslaw, and your choice of dipping sauce. Perfect for sharing or a solo spicy feast.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg?_wi=3",
|
||||
imageAlt: "Spicy hot wings combo",
|
||||
button: {
|
||||
text: "Add to Cart",
|
||||
@@ -143,7 +143,7 @@ export default function MenuPage() {
|
||||
{
|
||||
title: "Signature Sandwich Pack",
|
||||
description: "Our famous fried chicken sandwiches topped with fresh lettuce, tomato, and special sauce. Includes sides and a drink.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg?_wi=3",
|
||||
imageAlt: "Signature chicken sandwich pack",
|
||||
button: {
|
||||
text: "Add to Cart",
|
||||
|
||||
@@ -60,7 +60,7 @@ export default function HomePage() {
|
||||
{ text: "View Menu", href: "/menu" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-american-food-with-copy-space_23-2148454886.jpg?_wi=1"
|
||||
imageAlt="Signature KFC chicken bucket"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -86,7 +86,7 @@ export default function HomePage() {
|
||||
price: "$24.99",
|
||||
rating: 5,
|
||||
reviewCount: "12.5k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-plate-fastfood-chicken-wings-french-fries-with-lemon-bowls-sauces-spices-pink-white-checkered-tablecloth-right-side-black-table_140725-110463.jpg?_wi=1",
|
||||
imageAlt: "Original recipe fried chicken bucket",
|
||||
},
|
||||
{
|
||||
@@ -96,7 +96,7 @@ export default function HomePage() {
|
||||
price: "$14.99",
|
||||
rating: 5,
|
||||
reviewCount: "8.9k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-knife-tasty-meat-sandwich-chicken-nuggets-tomatoes-with-stem-pepper-wooden-board-sauce-ketchup-dark-blue-surface_179666-42441.jpg?_wi=1",
|
||||
imageAlt: "Crispy chicken burger with sides",
|
||||
},
|
||||
{
|
||||
@@ -106,7 +106,7 @@ export default function HomePage() {
|
||||
price: "$44.99",
|
||||
rating: 5,
|
||||
reviewCount: "15.2k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454905.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454905.jpg?_wi=1",
|
||||
imageAlt: "Complete family meal combo",
|
||||
},
|
||||
]}
|
||||
@@ -129,7 +129,7 @@ export default function HomePage() {
|
||||
title: "50% Off Family Buckets",
|
||||
description:
|
||||
"Get half off any family-size bucket when you order before 6 PM. Perfect for dinner time savings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/burger-social-media-post-design_505751-4398.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/burger-social-media-post-design_505751-4398.jpg?_wi=1",
|
||||
imageAlt: "50% off promotion",
|
||||
button: { text: "Claim Offer", href: "/order" },
|
||||
},
|
||||
@@ -137,7 +137,7 @@ export default function HomePage() {
|
||||
title: "Free Delivery Over $30",
|
||||
description:
|
||||
"Free delivery on orders over $30. Fast, fresh chicken delivered right to your door.",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/burger-social-media-post-design_505751-4398.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/burger-social-media-post-design_505751-4398.jpg?_wi=2",
|
||||
imageAlt: "Free delivery offer",
|
||||
button: { text: "Order Now", href: "/order" },
|
||||
},
|
||||
@@ -179,7 +179,7 @@ export default function HomePage() {
|
||||
tag: "Family Meals",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/waiter-serving-cup-coffee-customer_1170-634.jpg",
|
||||
avatarAlt: "Sarah Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-serving-cup-coffee-customer_1170-634.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-serving-cup-coffee-customer_1170-634.jpg?_wi=1",
|
||||
imageAlt: "Happy family enjoying KFC chicken",
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@ export default function HomePage() {
|
||||
tag: "Quick Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-dipping-chicken-croquette-into-sauce-beer-setup-with-nuts_140725-10810.jpg",
|
||||
avatarAlt: "Michael Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-dipping-chicken-croquette-into-sauce-beer-setup-with-nuts_140725-10810.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-dipping-chicken-croquette-into-sauce-beer-setup-with-nuts_140725-10810.jpg?_wi=1",
|
||||
imageAlt: "Professional enjoying chicken meal",
|
||||
},
|
||||
{
|
||||
@@ -205,7 +205,7 @@ export default function HomePage() {
|
||||
tag: "Food Quality",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-food-plate_23-2149152883.jpg",
|
||||
avatarAlt: "Emily Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-food-plate_23-2149152883.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-food-plate_23-2149152883.jpg?_wi=1",
|
||||
imageAlt: "Food enthusiast enjoying chicken",
|
||||
},
|
||||
{
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
tag: "Loyalty",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumb-up-shirt-cardigan-looking-cheery-front-view_176474-110852.jpg",
|
||||
avatarAlt: "David Kim",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumb-up-shirt-cardigan-looking-cheery-front-view_176474-110852.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumb-up-shirt-cardigan-looking-cheery-front-view_176474-110852.jpg?_wi=1",
|
||||
imageAlt: "Loyal customer enjoying KFC",
|
||||
},
|
||||
]}
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-man-sitting-with-hands-clasped_482257-121953.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-man-sitting-with-hands-clasped_482257-121953.jpg?_wi=1"
|
||||
imageAlt="KFC customer service"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -283,7 +283,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-fruits-vegetables_23-2148145567.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-with-fruits-vegetables_23-2148145567.jpg?_wi=1"
|
||||
imageAlt="Fresh KFC chicken preparation"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
|
||||
Reference in New Issue
Block a user