Merge version_1 into main #1

Merged
bender merged 8 commits from version_1 into main 2026-03-14 10:39:09 +00:00
8 changed files with 67 additions and 48 deletions

View File

@@ -90,7 +90,7 @@ export default function AboutPage() {
author: "Since Day One",
description: "Jollibee was founded with a simple mission: to bring joy to every family through delicious, affordable fast food. What started as a single store has grown into a nationwide chain serving millions of happy customers.",
tags: ["Family Values", "Quality Service"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-family-home_23-2148625995.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-family-home_23-2148625995.jpg?_wi=2",
imageAlt: "happy customer smiling portrait",
},
{
@@ -99,7 +99,7 @@ export default function AboutPage() {
author: "Quality First",
description: "Every meal at Jollibee is prepared with the finest ingredients and served with genuine care. We believe that food brings people together, and that's why we're committed to making every visit memorable.",
tags: ["Fresh Ingredients", "Excellence"],
imageSrc: "http://img.b2bpic.net/free-photo/father-bringing-turkey-with-salad-dressing-long-view_23-2148314926.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/father-bringing-turkey-with-salad-dressing-long-view_23-2148314926.jpg?_wi=2",
imageAlt: "happy family eating together portrait",
},
]}
@@ -129,21 +129,21 @@ export default function AboutPage() {
name: "Maria Santos",
role: "Happy Customer",
testimonial: "The chicken is absolutely crispy and delicious! My family visits Jollibee every weekend. The service is fast and friendly.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-family-home_23-2148625995.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-family-home_23-2148625995.jpg?_wi=3",
},
{
id: "testimonial-2",
name: "Juan Dela Cruz",
role: "Regular Customer",
testimonial: "Best value for money! The family meals are perfect and everyone in our family loves something different on the menu.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-young-man-red-blouse-holding-orders-making-smile-gesture-white-background_179666-36051.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-young-man-red-blouse-holding-orders-making-smile-gesture-white-background_179666-36051.jpg?_wi=2",
},
{
id: "testimonial-3",
name: "Rosa Garcia",
role: "Frequent Visitor",
testimonial: "The spaghetti here is unique and flavorful. It's become our go-to place for quick meals after work. Highly recommended!",
imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-4895.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-4895.jpg?_wi=2",
},
]}
carouselMode="buttons"

View File

@@ -87,7 +87,7 @@ export default function ContactPage() {
tagAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg?_wi=4"
imageAlt="customer service representative"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -1,27 +1,44 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Jollibee - Joyful Meals for the Whole Family",
description: "Discover delicious fast food at Jollibee. Order fried chicken, burgers, spaghetti, and family meals. Find locations near you and order online today!",
keywords: "fast food, fried chicken, burgers, spaghetti, family meals, order online, restaurant",
openGraph: {
title: "Jollibee - Joyful Meals for the Whole Family",
description: "Experience the joy of delicious fast food. Order your favorite meals online and find locations near you.",
siteName: "Jollibee",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Jollibee - Joyful Meals",
description: "Order delicious fast food online at Jollibee",
},
};
export default function RootLayout({
children,
@@ -31,7 +48,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +62,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -91,7 +91,7 @@ export default function LocationsPage() {
description:
"We have over 500 locations nationwide! Use our store locator to find the nearest Jollibee to you. Check hours, directions, and special events at your local branch.",
tags: ["500+ Locations", "Nation-wide", "Open Daily"],
imageSrc: "http://img.b2bpic.net/free-vector/illustrated-real-estate-searching-laptop_23-2148652412.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/illustrated-real-estate-searching-laptop_23-2148652412.jpg?_wi=2",
imageAlt: "store location map marker pins",
},
]}
@@ -171,7 +171,7 @@ export default function LocationsPage() {
tagAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg?_wi=2"
imageAlt="customer service representative"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -88,7 +88,7 @@ export default function MenuPage() {
name: "Crispy Fried Chicken Combo",
price: "$12.99",
variant: "2 & 1 Combo - Chicken, Rice & Drink",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg?_wi=2",
imageAlt: "Crispy Fried Chicken Combo",
},
{
@@ -96,7 +96,7 @@ export default function MenuPage() {
name: "Deluxe Burger Meal",
price: "$10.99",
variant: "Burger, Fries & Drink",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg?_wi=2",
imageAlt: "Deluxe Burger Meal",
},
{
@@ -104,7 +104,7 @@ export default function MenuPage() {
name: "Spaghetti Packed Special",
price: "$8.99",
variant: "Savory spaghetti with meat sauce",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-meatballs_1339-3003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-meatballs_1339-3003.jpg?_wi=2",
imageAlt: "Spaghetti Packed Special",
},
{
@@ -112,7 +112,7 @@ export default function MenuPage() {
name: "Family Feast Bundle",
price: "$34.99",
variant: "Complete meal for 4-5 people",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg?_wi=2",
imageAlt: "Family Feast Bundle",
},
]}
@@ -148,7 +148,7 @@ export default function MenuPage() {
author: "Most Popular",
description: "Our signature crispy fried chicken is freshly prepared using our special seasoning blend. Choose from individual pieces, combo meals, or family packs.",
tags: ["Fresh Daily", "Customer Favorite", "Multiple Options"],
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg?_wi=3",
},
{
id: "category-burgers",
@@ -156,7 +156,7 @@ export default function MenuPage() {
author: "Premium Quality",
description: "Gourmet burgers made with quality beef, fresh ingredients, and our signature sauces. Perfect for a quick lunch or dinner.",
tags: ["Gourmet Beef", "Fresh Ingredients", "Multiple Toppings"],
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg?_wi=3",
},
]}
animationType="blur-reveal"

View File

@@ -89,7 +89,7 @@ export default function OrderPage() {
name: "Crispy Fried Chicken",
price: "$9.99",
variant: "3-piece combo",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg?_wi=5",
imageAlt: "crispy fried chicken golden brown",
},
{
@@ -97,7 +97,7 @@ export default function OrderPage() {
name: "Juicy Burger",
price: "$8.99",
variant: "Single patty",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg?_wi=5",
imageAlt: "juicy burger with cheese lettuce",
},
{
@@ -105,7 +105,7 @@ export default function OrderPage() {
name: "Savory Spaghetti",
price: "$7.99",
variant: "Regular portion",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-meatballs_1339-3003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-meatballs_1339-3003.jpg?_wi=3",
imageAlt: "italian spaghetti with meat sauce",
},
{
@@ -113,7 +113,7 @@ export default function OrderPage() {
name: "Family Meal Pack",
price: "$29.99",
variant: "Feeds 4-5 people",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg?_wi=4",
imageAlt: "family meal bucket chicken combo",
},
]}
@@ -197,7 +197,7 @@ export default function OrderPage() {
tagAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg?_wi=3"
imageAlt="customer service representative"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -119,7 +119,7 @@ export default function HomePage() {
name: "Crispy Fried Chicken",
price: "$9.99",
variant: "3-piece combo",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg?_wi=1",
imageAlt: "Crispy Fried Chicken",
},
{
@@ -127,7 +127,7 @@ export default function HomePage() {
name: "Juicy Burger",
price: "$8.99",
variant: "Single patty",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg?_wi=1",
imageAlt: "Juicy Burger",
},
{
@@ -135,7 +135,7 @@ export default function HomePage() {
name: "Savory Spaghetti",
price: "$7.99",
variant: "Regular portion",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-meatballs_1339-3003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-meatballs_1339-3003.jpg?_wi=1",
imageAlt: "Savory Spaghetti",
},
{
@@ -143,7 +143,7 @@ export default function HomePage() {
name: "Family Meal Pack",
price: "$29.99",
variant: "Feeds 4-5 people",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg?_wi=1",
imageAlt: "Family Meal Pack",
},
]}
@@ -179,7 +179,7 @@ export default function HomePage() {
author: "Limited Time",
description: "Get our delicious fried chicken combo with free spaghetti and a drink. Perfect for family gatherings and celebrations.",
tags: ["Limited Offer", "Weekends Only"],
imageSrc: "http://img.b2bpic.net/free-vector/asbtract-colorful-sales-background-concept_23-2148398975.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/asbtract-colorful-sales-background-concept_23-2148398975.jpg?_wi=1",
},
{
id: "promo-2",
@@ -187,7 +187,7 @@ export default function HomePage() {
author: "Best Value",
description: "Save up to 25% when you order our complete family package. Includes chicken, burgers, spaghetti, and drinks for the whole family.",
tags: ["Save 25%", "Family Approved"],
imageSrc: "http://img.b2bpic.net/free-vector/combo-meals-offer-poster_23-2148679390.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/combo-meals-offer-poster_23-2148679390.jpg?_wi=1",
},
]}
animationType="blur-reveal"
@@ -217,21 +217,21 @@ export default function HomePage() {
name: "Maria Santos",
role: "Happy Customer",
testimonial: "The chicken is absolutely crispy and delicious! My family visits Jollibee every weekend. The service is fast and friendly.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-family-home_23-2148625995.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-family-home_23-2148625995.jpg?_wi=1",
},
{
id: "testimonial-2",
name: "Juan Dela Cruz",
role: "Regular Customer",
testimonial: "Best value for money! The family meals are perfect and everyone in our family loves something different on the menu.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-young-man-red-blouse-holding-orders-making-smile-gesture-white-background_179666-36051.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-young-man-red-blouse-holding-orders-making-smile-gesture-white-background_179666-36051.jpg?_wi=1",
},
{
id: "testimonial-3",
name: "Rosa Garcia",
role: "Frequent Visitor",
testimonial: "The spaghetti here is unique and flavorful. It's become our go-to place for quick meals after work. Highly recommended!",
imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-4895.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-4895.jpg?_wi=1",
},
{
id: "testimonial-4",
@@ -245,7 +245,7 @@ export default function HomePage() {
name: "Ana Rivera",
role: "Birthday Party Host",
testimonial: "We had our daughter's birthday party at Jollibee. The staff was incredible, and all the kids had such a fun time!",
imageSrc: "http://img.b2bpic.net/free-photo/father-bringing-turkey-with-salad-dressing-long-view_23-2148314926.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/father-bringing-turkey-with-salad-dressing-long-view_23-2148314926.jpg?_wi=1",
},
{
id: "testimonial-6",
@@ -316,7 +316,7 @@ export default function HomePage() {
author: "Store Locations",
description: "We have over 500 locations nationwide! Use our store locator to find the nearest Jollibee to you. Check hours, directions, and special events at your local branch.",
tags: ["500+ Locations", "Nation-wide", "Open Daily"],
imageSrc: "http://img.b2bpic.net/free-vector/illustrated-real-estate-searching-laptop_23-2148652412.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/illustrated-real-estate-searching-laptop_23-2148652412.jpg?_wi=1",
},
]}
animationType="slide-up"
@@ -347,7 +347,7 @@ export default function HomePage() {
tagAnimation="blur-reveal"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-putting-hands-together_23-2149204765.jpg?_wi=1"
imageAlt="Friendly customer service team"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -90,7 +90,7 @@ export default function PromotionsPage() {
author: "Limited Time",
description: "Get our delicious fried chicken combo with free spaghetti and a drink. Perfect for family gatherings and celebrations.",
tags: ["Limited Offer", "Weekends Only"],
imageSrc: "http://img.b2bpic.net/free-vector/asbtract-colorful-sales-background-concept_23-2148398975.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/asbtract-colorful-sales-background-concept_23-2148398975.jpg?_wi=2",
imageAlt: "limited time offer promotion banner",
},
{
@@ -99,7 +99,7 @@ export default function PromotionsPage() {
author: "Best Value",
description: "Save up to 25% when you order our complete family package. Includes chicken, burgers, spaghetti, and drinks for the whole family.",
tags: ["Save 25%", "Family Approved"],
imageSrc: "http://img.b2bpic.net/free-vector/combo-meals-offer-poster_23-2148679390.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/combo-meals-offer-poster_23-2148679390.jpg?_wi=2",
imageAlt: "combo meal deal promotional package",
},
]}
@@ -130,7 +130,7 @@ export default function PromotionsPage() {
name: "Summer Fresh Combo",
price: "$12.99",
variant: "Perfect for Summer",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chicken-crispy-legs-with-lettuce-lemon-dark-board_114579-50383.jpg?_wi=4",
imageAlt: "crispy fried chicken golden brown",
},
{
@@ -138,7 +138,7 @@ export default function PromotionsPage() {
name: "Party Pack Deluxe",
price: "$34.99",
variant: "Feeds 6-8 people",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-holding-package-with-chips-watching-movie-blue-surface_140725-69695.jpg?_wi=3",
imageAlt: "family meal bucket chicken combo",
},
{
@@ -146,7 +146,7 @@ export default function PromotionsPage() {
name: "Quick Lunch Special",
price: "$6.99",
variant: "Lunch only, 11am-2pm",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-homemade-burgers-dark_114579-7620.jpg?_wi=4",
imageAlt: "juicy burger with cheese lettuce",
},
]}