Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -94,7 +94,7 @@ export default function AboutPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg?_wi=3",
|
||||
imageAlt: "Cozy brunch table with coffee and sourdough toast at Brunch Collective",
|
||||
},
|
||||
]}
|
||||
@@ -140,35 +140,35 @@ export default function AboutPage() {
|
||||
id: "sourdough",
|
||||
name: "Sourdough Breakfast",
|
||||
price: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-eating-brunch-home-bed_23-2148447638.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-eating-brunch-home-bed_23-2148447638.jpg?_wi=3",
|
||||
imageAlt: "Artisan sourdough toast with seasonal toppings at Brunch Collective",
|
||||
},
|
||||
{
|
||||
id: "burrito",
|
||||
name: "Breakfast Burrito",
|
||||
price: "14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805540.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805540.jpg?_wi=3",
|
||||
imageAlt: "Hearty breakfast burrito with eggs and bacon",
|
||||
},
|
||||
{
|
||||
id: "french-toast",
|
||||
name: "French Toast",
|
||||
price: "13",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129778.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129778.jpg?_wi=3",
|
||||
imageAlt: "Golden french toast with berries and maple syrup",
|
||||
},
|
||||
{
|
||||
id: "bacon",
|
||||
name: "Crispy Bacon",
|
||||
price: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-scrambled-eggs-bacon-sausage-toast_2829-5727.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-scrambled-eggs-bacon-sausage-toast_2829-5727.jpg?_wi=3",
|
||||
imageAlt: "Perfectly cooked artisan bacon strips",
|
||||
},
|
||||
{
|
||||
id: "avocado",
|
||||
name: "Avocado Toast",
|
||||
price: "11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg?_wi=3",
|
||||
imageAlt: "Creamy avocado on artisan toast with poached egg",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -87,7 +87,7 @@ export default function ContactPage() {
|
||||
background={{ variant: "plain" }}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg?_wi=5",
|
||||
imageAlt: "Cozy brunch table with coffee and sourdough toast at Brunch Collective",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,58 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Brunch Collective - Best Brunch & Coffee in Spring Hill, TN",
|
||||
description: "Brunch Collective is Spring Hill's favorite cozy brunch spot. Locally sourced ingredients, warm hospitality, and Instagram-worthy food. Order online or visit us today.",
|
||||
keywords: "brunch Spring Hill TN, best breakfast Spring Hill, cozy coffee shop Tennessee, locally sourced brunch, artisan coffee Spring Hill",
|
||||
openGraph: {
|
||||
title: "Brunch Collective - Spring Hill's Favorite Brunch Spot",
|
||||
description: "Experience cozy brunch with locally sourced ingredients. Artisan coffee, sourdough toast, breakfast burritos, and more in Spring Hill, Tennessee.",
|
||||
siteName: "Brunch Collective",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
alt: "Cozy brunch table with coffee and sourdough at Brunch Collective",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Brunch Collective - Spring Hill's Favorite Brunch Spot",
|
||||
description: "Locally sourced brunch, artisan coffee, and warm hospitality in Spring Hill, TN",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +61,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -95,7 +95,7 @@ export default function MenuPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg?_wi=2",
|
||||
imageAlt: "Beautiful brunch spread with coffee and pastries",
|
||||
},
|
||||
]}
|
||||
@@ -115,35 +115,35 @@ export default function MenuPage() {
|
||||
id: "sourdough",
|
||||
name: "Sourdough Breakfast",
|
||||
price: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-eating-brunch-home-bed_23-2148447638.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-eating-brunch-home-bed_23-2148447638.jpg?_wi=2",
|
||||
imageAlt: "Artisan sourdough toast with seasonal toppings",
|
||||
},
|
||||
{
|
||||
id: "burrito",
|
||||
name: "Breakfast Burrito",
|
||||
price: "14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805540.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805540.jpg?_wi=2",
|
||||
imageAlt: "Hearty breakfast burrito with eggs and bacon",
|
||||
},
|
||||
{
|
||||
id: "french-toast",
|
||||
name: "French Toast",
|
||||
price: "13",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129778.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129778.jpg?_wi=2",
|
||||
imageAlt: "Golden french toast with berries and maple syrup",
|
||||
},
|
||||
{
|
||||
id: "avocado",
|
||||
name: "Avocado Toast",
|
||||
price: "11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg?_wi=2",
|
||||
imageAlt: "Creamy avocado on artisan toast with poached egg",
|
||||
},
|
||||
{
|
||||
id: "bacon",
|
||||
name: "Crispy Bacon",
|
||||
price: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-scrambled-eggs-bacon-sausage-toast_2829-5727.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-scrambled-eggs-bacon-sausage-toast_2829-5727.jpg?_wi=2",
|
||||
imageAlt: "Perfectly cooked artisan bacon strips",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -99,7 +99,7 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg?_wi=1",
|
||||
imageAlt: "Cozy brunch table with coffee and sourdough toast at Brunch Collective",
|
||||
},
|
||||
]}
|
||||
@@ -145,35 +145,35 @@ export default function HomePage() {
|
||||
id: "sourdough",
|
||||
name: "Sourdough Breakfast",
|
||||
price: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-eating-brunch-home-bed_23-2148447638.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-eating-brunch-home-bed_23-2148447638.jpg?_wi=1",
|
||||
imageAlt: "Artisan sourdough toast with seasonal toppings at Brunch Collective",
|
||||
},
|
||||
{
|
||||
id: "burrito",
|
||||
name: "Breakfast Burrito",
|
||||
price: "14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805540.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805540.jpg?_wi=1",
|
||||
imageAlt: "Hearty breakfast burrito with eggs and bacon",
|
||||
},
|
||||
{
|
||||
id: "french-toast",
|
||||
name: "French Toast",
|
||||
price: "13",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129778.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129778.jpg?_wi=1",
|
||||
imageAlt: "Golden french toast with berries and maple syrup",
|
||||
},
|
||||
{
|
||||
id: "bacon",
|
||||
name: "Crispy Bacon",
|
||||
price: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-scrambled-eggs-bacon-sausage-toast_2829-5727.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/english-breakfast-scrambled-eggs-bacon-sausage-toast_2829-5727.jpg?_wi=1",
|
||||
imageAlt: "Perfectly cooked artisan bacon strips",
|
||||
},
|
||||
{
|
||||
id: "avocado",
|
||||
name: "Avocado Toast",
|
||||
price: "11",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/avocado-open-toast-with-avocado-slices-lemon-flax-seeds-sesame-seeds-black-bread-slices-top-view_2831-796.jpg?_wi=1",
|
||||
imageAlt: "Creamy avocado on artisan toast with poached egg",
|
||||
},
|
||||
]}
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
role: "Local Regular",
|
||||
company: "Spring Hill, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-curly-hair_23-2148728586.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-curly-hair_23-2148728586.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -206,7 +206,7 @@ export default function HomePage() {
|
||||
role: "Visitor",
|
||||
company: "Nashville, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-bearded-man-with-specific-appearance-uses-tablet-computer_273609-8927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-bearded-man-with-specific-appearance-uses-tablet-computer_273609-8927.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -214,7 +214,7 @@ export default function HomePage() {
|
||||
role: "Food Blogger",
|
||||
company: "Tennessee",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-speaking-phone-while-his-girlfriend-being-bored_176420-2295.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-speaking-phone-while-his-girlfriend-being-bored_176420-2295.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -222,7 +222,7 @@ export default function HomePage() {
|
||||
role: "Weekend Visitor",
|
||||
company: "Memphis, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -230,7 +230,7 @@ export default function HomePage() {
|
||||
role: "Community Member",
|
||||
company: "Spring Hill, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-drinking-coffee-caf_23-2147955434.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-drinking-coffee-caf_23-2147955434.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -238,7 +238,7 @@ export default function HomePage() {
|
||||
role: "Local Business Owner",
|
||||
company: "Spring Hill, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-with-nfc-technology-restaurant_23-2150039466.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-with-nfc-technology-restaurant_23-2150039466.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
|
||||
@@ -93,7 +93,7 @@ export default function ReviewsPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cup-coffee-macarons_23-2148349701.jpg?_wi=4",
|
||||
imageAlt: "Happy customers enjoying brunch at Brunch Collective",
|
||||
},
|
||||
]}
|
||||
@@ -115,7 +115,7 @@ export default function ReviewsPage() {
|
||||
role: "Local Regular",
|
||||
company: "Spring Hill, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-curly-hair_23-2148728586.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-curly-hair_23-2148728586.jpg?_wi=2",
|
||||
imageAlt: "Sarah Johnson, local regular",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function ReviewsPage() {
|
||||
role: "Visitor",
|
||||
company: "Nashville, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-bearded-man-with-specific-appearance-uses-tablet-computer_273609-8927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-bearded-man-with-specific-appearance-uses-tablet-computer_273609-8927.jpg?_wi=2",
|
||||
imageAlt: "Michael Chen, visitor",
|
||||
},
|
||||
{
|
||||
@@ -133,7 +133,7 @@ export default function ReviewsPage() {
|
||||
role: "Food Blogger",
|
||||
company: "Tennessee",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-speaking-phone-while-his-girlfriend-being-bored_176420-2295.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-speaking-phone-while-his-girlfriend-being-bored_176420-2295.jpg?_wi=2",
|
||||
imageAlt: "Emily Rodriguez, food blogger",
|
||||
},
|
||||
{
|
||||
@@ -142,7 +142,7 @@ export default function ReviewsPage() {
|
||||
role: "Weekend Visitor",
|
||||
company: "Memphis, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg?_wi=2",
|
||||
imageAlt: "David Kim, weekend visitor",
|
||||
},
|
||||
{
|
||||
@@ -151,7 +151,7 @@ export default function ReviewsPage() {
|
||||
role: "Community Member",
|
||||
company: "Spring Hill, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-drinking-coffee-caf_23-2147955434.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-drinking-coffee-caf_23-2147955434.jpg?_wi=2",
|
||||
imageAlt: "Jessica Thompson, community member",
|
||||
},
|
||||
{
|
||||
@@ -160,7 +160,7 @@ export default function ReviewsPage() {
|
||||
role: "Local Business Owner",
|
||||
company: "Spring Hill, TN",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-with-nfc-technology-restaurant_23-2150039466.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-with-nfc-technology-restaurant_23-2150039466.jpg?_wi=2",
|
||||
imageAlt: "Marcus Williams, local business owner",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user