Merge version_1 into main #1
@@ -70,7 +70,7 @@ export default function AboutPage() {
|
||||
title: "Uncompromising Quality",
|
||||
description: "We believe that quality isn't negotiable. From bean selection to preparation, every detail matters. We taste every batch and only serve what meets our exacting standards.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Coffee, text: "Premium Sourcing" },
|
||||
@@ -84,7 +84,7 @@ export default function AboutPage() {
|
||||
title: "Community First",
|
||||
description: "Koffee Beanz is built on genuine relationships. We support local initiatives, host community events, and create an inclusive space for everyone in Shelbyville to belong.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-girl-with-blue-eyes-bright-pink-lips-sitting-coffee-shop-chair-she-holds-smartphone-her-hand_197531-83.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-girl-with-blue-eyes-bright-pink-lips-sitting-coffee-shop-chair-she-holds-smartphone-her-hand_197531-83.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Users, text: "Local Partnerships" },
|
||||
@@ -98,7 +98,7 @@ export default function AboutPage() {
|
||||
title: "Sustainable Futures",
|
||||
description: "Environmental responsibility is woven into our operations. We minimize waste through composting programs, use eco-friendly packaging, and partner with organizations dedicated to planet health.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pancakes-with-syrup-butter-roasted-nuts-wooden-plate_181624-12217.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pancakes-with-syrup-butter-roasted-nuts-wooden-plate_181624-12217.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Leaf, text: "Eco-Friendly Materials" },
|
||||
@@ -128,7 +128,7 @@ export default function AboutPage() {
|
||||
handle: "@coffeeaddict_sarah",
|
||||
testimonial: "More than coffee—it's a sanctuary. The team genuinely cares, and I love seeing them give back to our community. This is what a real cafe should be.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-girl-glasses-takes-selfie-with-smartphone-smiling-looking-happy-enjoying-hot-drink_1258-202652.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-girl-glasses-takes-selfie-with-smartphone-smiling-looking-happy-enjoying-hot-drink_1258-202652.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "review-2",
|
||||
@@ -136,7 +136,7 @@ export default function AboutPage() {
|
||||
handle: "@mike_morning_runs",
|
||||
testimonial: "I appreciate their commitment to sustainability. Every purchase feels like I'm contributing to something bigger than just getting my morning coffee.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-holding-mobile-phone-coffee-cup-waiting-area_107420-95820.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-holding-mobile-phone-coffee-cup-waiting-area_107420-95820.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "review-3",
|
||||
@@ -144,7 +144,7 @@ export default function AboutPage() {
|
||||
handle: "@emily.designs",
|
||||
testimonial: "The baristas are artists in their craft. They remember my order and my story. That personal touch is rare and precious these days.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function ContactPage() {
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg?_wi=4"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
|
||||
@@ -1,24 +1,59 @@
|
||||
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"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Koffee Beanz | Specialty Coffee & Cozy Cafe in Shelbyville",
|
||||
description: "Discover Koffee Beanz—Shelbyville's favorite coffee shop. Specialty drinks, fresh pastries, breakfast & lunch. Drive-thru available. Order online or visit today!",
|
||||
keywords: "coffee, cafe, Shelbyville, specialty coffee, drive-thru coffee, breakfast, lunch, online ordering",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Koffee Beanz | Premium Coffee & Cozy Cafe",
|
||||
description: "Experience crafted coffee, delicious food, and warm hospitality at Shelbyville's favorite coffee destination.",
|
||||
type: "website",
|
||||
siteName: "Koffee Beanz",
|
||||
url: "https://koffeebeanz.com",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg",
|
||||
alt: "Koffee Beanz specialty coffee drink",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Koffee Beanz | Premium Coffee & Cozy Cafe",
|
||||
description: "Specialty coffee, fresh pastries, and warm hospitality. Visit or order online today!",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +62,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +76,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -86,7 +86,7 @@ export default function MenuPage() {
|
||||
title: "Signature Mocha",
|
||||
description: "Rich espresso blended with velvety steamed milk and dark chocolate, topped with whipped cream and a drizzle of chocolate sauce.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clear-drinking-glass-with-brown-liquid_209848-19.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clear-drinking-glass-with-brown-liquid_209848-19.jpg?_wi=2",
|
||||
imageAlt: "chocolate mocha coffee whipped cream professional photography",
|
||||
},
|
||||
items: [
|
||||
@@ -101,7 +101,7 @@ export default function MenuPage() {
|
||||
title: "Midnight Orchid Latte",
|
||||
description: "A stunning purple latte with a hint of floral sweetness, made with our signature purple blend and topped with edible shimmer for an Instagram-worthy moment.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-hot-latte-with-froth_140725-7198.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-hot-latte-with-froth_140725-7198.jpg?_wi=2",
|
||||
imageAlt: "purple latte butterfly pea flower edible shimmer",
|
||||
},
|
||||
items: [
|
||||
@@ -116,7 +116,7 @@ export default function MenuPage() {
|
||||
title: "Blueberry Pancakes",
|
||||
description: "Fluffy, golden pancakes loaded with fresh blueberries, served with whipped butter and pure maple syrup.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pancakes-with-syrup-butter-roasted-nuts-wooden-plate_181624-12217.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pancakes-with-syrup-butter-roasted-nuts-wooden-plate_181624-12217.jpg?_wi=3",
|
||||
imageAlt: "fluffy blueberry pancakes maple syrup whipped butter",
|
||||
},
|
||||
items: [
|
||||
@@ -146,7 +146,7 @@ export default function MenuPage() {
|
||||
name: "Monday Mocha Madness",
|
||||
price: "Buy 1, Get 1 50% Off",
|
||||
variant: "All Day Monday",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/coffee-shop-facebook-template_23-2150812333.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/coffee-shop-facebook-template_23-2150812333.jpg?_wi=2",
|
||||
imageAlt: "Monday Mocha special deal",
|
||||
},
|
||||
{
|
||||
@@ -154,7 +154,7 @@ export default function MenuPage() {
|
||||
name: "Wednesday Wellness Wrap",
|
||||
price: "Free with $15 Order",
|
||||
variant: "Every Wednesday",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-rolled-sandwiches-with-chicken-avocado_1147-338.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-rolled-sandwiches-with-chicken-avocado_1147-338.jpg?_wi=2",
|
||||
imageAlt: "Wednesday wellness promotion",
|
||||
},
|
||||
{
|
||||
@@ -162,7 +162,7 @@ export default function MenuPage() {
|
||||
name: "Loyalty Rewards Program",
|
||||
price: "10% Off Every 10th Drink",
|
||||
variant: "Sign Up Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-drinking-coffee_23-2148395402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-drinking-coffee_23-2148395402.jpg?_wi=2",
|
||||
imageAlt: "Loyalty rewards program",
|
||||
},
|
||||
]}
|
||||
@@ -177,7 +177,7 @@ export default function MenuPage() {
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg?_wi=2"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
|
||||
@@ -56,11 +56,11 @@ export default function HomePage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cappuccino-coffee-transparent-glass-table_23-2147908368.jpg?_wi=1",
|
||||
imageAlt: "Beautifully crafted coffee drink",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-girl-with-blue-eyes-bright-pink-lips-sitting-coffee-shop-chair-she-holds-smartphone-her-hand_197531-83.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-girl-with-blue-eyes-bright-pink-lips-sitting-coffee-shop-chair-she-holds-smartphone-her-hand_197531-83.jpg?_wi=1",
|
||||
imageAlt: "Cozy Koffee Beanz cafe interior",
|
||||
},
|
||||
]}
|
||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
||||
title: "Signature Mocha",
|
||||
description: "Rich espresso blended with velvety steamed milk and dark chocolate, topped with whipped cream and a drizzle of chocolate sauce.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clear-drinking-glass-with-brown-liquid_209848-19.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clear-drinking-glass-with-brown-liquid_209848-19.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Coffee, text: "Premium Espresso" },
|
||||
@@ -118,7 +118,7 @@ export default function HomePage() {
|
||||
title: "Midnight Orchid Latte",
|
||||
description: "A stunning purple latte with a hint of floral sweetness, made with our signature purple blend and topped with edible shimmer for an Instagram-worthy moment.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-hot-latte-with-froth_140725-7198.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-hot-latte-with-froth_140725-7198.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Sparkles, text: "Floral Notes" },
|
||||
@@ -132,7 +132,7 @@ export default function HomePage() {
|
||||
title: "Blueberry Pancakes",
|
||||
description: "Fluffy, golden pancakes loaded with fresh blueberries, served with whipped butter and pure maple syrup.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pancakes-with-syrup-butter-roasted-nuts-wooden-plate_181624-12217.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pancakes-with-syrup-butter-roasted-nuts-wooden-plate_181624-12217.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Apple, text: "Fresh Blueberries" },
|
||||
@@ -161,7 +161,7 @@ export default function HomePage() {
|
||||
name: "Monday Mocha Madness",
|
||||
price: "Buy 1, Get 1 50% Off",
|
||||
variant: "All Day Monday",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/coffee-shop-facebook-template_23-2150812333.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/coffee-shop-facebook-template_23-2150812333.jpg?_wi=1",
|
||||
imageAlt: "Monday Mocha special deal",
|
||||
},
|
||||
{
|
||||
@@ -169,7 +169,7 @@ export default function HomePage() {
|
||||
name: "Wednesday Wellness Wrap",
|
||||
price: "Free with $15 Order",
|
||||
variant: "Every Wednesday",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-rolled-sandwiches-with-chicken-avocado_1147-338.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-rolled-sandwiches-with-chicken-avocado_1147-338.jpg?_wi=1",
|
||||
imageAlt: "Wednesday wellness promotion",
|
||||
},
|
||||
{
|
||||
@@ -177,7 +177,7 @@ export default function HomePage() {
|
||||
name: "Loyalty Rewards Program",
|
||||
price: "10% Off Every 10th Drink",
|
||||
variant: "Sign Up Free",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-drinking-coffee_23-2148395402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-drinking-coffee_23-2148395402.jpg?_wi=1",
|
||||
imageAlt: "Loyalty rewards program",
|
||||
},
|
||||
]}
|
||||
@@ -199,7 +199,7 @@ export default function HomePage() {
|
||||
handle: "@coffeeaddict_sarah",
|
||||
testimonial: "The Midnight Orchid Latte is absolutely stunning and tastes even better than it looks! This is my new go-to order. The staff is always so friendly and remembers my name.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-girl-glasses-takes-selfie-with-smartphone-smiling-looking-happy-enjoying-hot-drink_1258-202652.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-girl-glasses-takes-selfie-with-smartphone-smiling-looking-happy-enjoying-hot-drink_1258-202652.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "review-2",
|
||||
@@ -207,7 +207,7 @@ export default function HomePage() {
|
||||
handle: "@mike_morning_runs",
|
||||
testimonial: "Best coffee in Shelbyville, hands down. The drive-thru is so efficient, and they get my order right every single time. Been coming here for a year and never disappointed.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-holding-mobile-phone-coffee-cup-waiting-area_107420-95820.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-holding-mobile-phone-coffee-cup-waiting-area_107420-95820.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "review-3",
|
||||
@@ -215,7 +215,7 @@ export default function HomePage() {
|
||||
handle: "@emily.designs",
|
||||
testimonial: "I work here almost every day—the wifi is great, the ambiance is perfect, and the lattes are consistently excellent. It's my favorite spot in town to do creative work.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "review-4",
|
||||
@@ -223,7 +223,7 @@ export default function HomePage() {
|
||||
handle: "@family_foodie",
|
||||
testimonial: "Brought my whole family last Sunday for breakfast. The pancakes are fluffy perfection, and the kids loved the hot chocolate. Coming back this weekend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wife-husband-spending-time-together-indoors_23-2148821596.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wife-husband-spending-time-together-indoors_23-2148821596.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "review-5",
|
||||
@@ -231,7 +231,7 @@ export default function HomePage() {
|
||||
handle: "@jess_sugar_free",
|
||||
testimonial: "Finally a coffee shop that takes sugar-free options seriously! Their sugar-free vanilla latte tastes amazing and doesn't have that artificial aftertaste.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/japanese-woman-having-coffee_53876-30762.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/japanese-woman-having-coffee_53876-30762.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "review-6",
|
||||
@@ -239,7 +239,7 @@ export default function HomePage() {
|
||||
handle: "@rob_early_bird",
|
||||
testimonial: "Open early for us morning people! Quick service, great espresso, and the Bacon, Egg, Tomato, Avocado Salad is a game-changer for a healthy breakfast.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-holding-cup-coffee-smile_197531-33492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-holding-cup-coffee-smile_197531-33492.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -327,7 +327,7 @@ export default function HomePage() {
|
||||
background={{ variant: "animated-grid" }}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg?_wi=1"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
|
||||
@@ -84,7 +84,7 @@ export default function ReviewsPage() {
|
||||
handle: "@coffeeaddict_sarah",
|
||||
testimonial: "The Midnight Orchid Latte is absolutely stunning and tastes even better than it looks! This is my new go-to order. The staff is always so friendly and remembers my name.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-girl-glasses-takes-selfie-with-smartphone-smiling-looking-happy-enjoying-hot-drink_1258-202652.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-girl-glasses-takes-selfie-with-smartphone-smiling-looking-happy-enjoying-hot-drink_1258-202652.jpg?_wi=3",
|
||||
imageAlt: "happy woman coffee shop portrait professional",
|
||||
},
|
||||
{
|
||||
@@ -93,7 +93,7 @@ export default function ReviewsPage() {
|
||||
handle: "@mike_morning_runs",
|
||||
testimonial: "Best coffee in Shelbyville, hands down. The drive-thru is so efficient, and they get my order right every single time. Been coming here for a year and never disappointed.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-holding-mobile-phone-coffee-cup-waiting-area_107420-95820.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-holding-mobile-phone-coffee-cup-waiting-area_107420-95820.jpg?_wi=3",
|
||||
imageAlt: "man holding coffee cup smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -102,7 +102,7 @@ export default function ReviewsPage() {
|
||||
handle: "@emily.designs",
|
||||
testimonial: "I work here almost every day—the wifi is great, the ambiance is perfect, and the lattes are consistently excellent. It's my favorite spot in town to do creative work.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-laugh_23-2148395406.jpg?_wi=3",
|
||||
imageAlt: "woman working laptop coffee shop portrait",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function ReviewsPage() {
|
||||
handle: "@family_foodie",
|
||||
testimonial: "Brought my whole family last Sunday for breakfast. The pancakes are fluffy perfection, and the kids loved the hot chocolate. Coming back this weekend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wife-husband-spending-time-together-indoors_23-2148821596.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wife-husband-spending-time-together-indoors_23-2148821596.jpg?_wi=2",
|
||||
imageAlt: "family breakfast pancakes cafe together",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function ReviewsPage() {
|
||||
handle: "@jess_sugar_free",
|
||||
testimonial: "Finally a coffee shop that takes sugar-free options seriously! Their sugar-free vanilla latte tastes amazing and doesn't have that artificial aftertaste.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/japanese-woman-having-coffee_53876-30762.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/japanese-woman-having-coffee_53876-30762.jpg?_wi=2",
|
||||
imageAlt: "woman healthy lifestyle coffee portrait",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function ReviewsPage() {
|
||||
handle: "@rob_early_bird",
|
||||
testimonial: "Open early for us morning people! Quick service, great espresso, and the Bacon, Egg, Tomato, Avocado Salad is a game-changer for a healthy breakfast.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-holding-cup-coffee-smile_197531-33492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-holding-cup-coffee-smile_197531-33492.jpg?_wi=2",
|
||||
imageAlt: "man early morning coffee routine portrait",
|
||||
},
|
||||
]}
|
||||
@@ -175,7 +175,7 @@ export default function ReviewsPage() {
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-hotel-booking-application-background_23-2148155993.jpg?_wi=3"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
|
||||
Reference in New Issue
Block a user