Merge version_1 into main #1
@@ -99,35 +99,35 @@ export default function AboutPage() {
|
||||
id: "1",
|
||||
name: "Classic Pancakes",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg?_wi=3",
|
||||
imageAlt: "Fluffy homemade pancakes",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Fish & Chips",
|
||||
price: "$16.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg?_wi=3",
|
||||
imageAlt: "Crispy fish and chips",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chicken Fried Steak",
|
||||
price: "$18.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg?_wi=3",
|
||||
imageAlt: "Homestyle chicken fried steak",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Pastrami Burger",
|
||||
price: "$15.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg?_wi=3",
|
||||
imageAlt: "Gourmet pastrami burger",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "French Toast",
|
||||
price: "$13.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg?_wi=3",
|
||||
imageAlt: "Eggy homemade french toast",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
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: "Mountain Oaks Cafe - Homestyle Cooking in Oakhurst, CA",
|
||||
description: "Award-winning homestyle restaurant in Oakhurst serving breakfast, lunch & dinner. 4.8★ rated with 750+ reviews. Fresh ingredients, genuine hospitality.",
|
||||
keywords: "restaurant Oakhurst, homestyle cafe, breakfast lunch dinner, mountain hospitality, local restaurant California",
|
||||
metadataBase: new URL("https://mountainoakscafe.com"),
|
||||
alternates: {
|
||||
canonical: "https://mountainoakscafe.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Mountain Oaks Cafe - Homestyle Cooking",
|
||||
description: "Oakhurst's favorite restaurant for comfort food and genuine hospitality. Call (559) 683-1120.",
|
||||
url: "https://mountainoakscafe.com",
|
||||
siteName: "Mountain Oaks Cafe",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/ceramic-plate-square-cut-vegetables-herbs-salad_114579-1889.jpg",
|
||||
alt: "Mountain Oaks Cafe - Featured Homestyle Meal",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Mountain Oaks Cafe - Homestyle Cooking",
|
||||
description: "Award-winning homestyle restaurant in Oakhurst. Call (559) 683-1120 for reservations.",
|
||||
images: ["http://img.b2bpic.net/free-photo/ceramic-plate-square-cut-vegetables-herbs-salad_114579-1889.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,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 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -69,35 +69,35 @@ export default function MenuPage() {
|
||||
id: "1",
|
||||
name: "Classic Pancakes",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg?_wi=2",
|
||||
imageAlt: "Fluffy homemade pancakes",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "French Toast",
|
||||
price: "$13.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg?_wi=2",
|
||||
imageAlt: "Eggy homemade french toast",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Pastrami Burger",
|
||||
price: "$15.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg?_wi=2",
|
||||
imageAlt: "Gourmet pastrami burger",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Fish & Chips",
|
||||
price: "$16.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg?_wi=2",
|
||||
imageAlt: "Crispy fish and chips",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Chicken Fried Steak",
|
||||
price: "$18.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg?_wi=2",
|
||||
imageAlt: "Homestyle chicken fried steak",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -114,35 +114,35 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Classic Pancakes",
|
||||
price: "$12.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg?_wi=1",
|
||||
imageAlt: "Fluffy homemade pancakes",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Fish & Chips",
|
||||
price: "$16.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg?_wi=1",
|
||||
imageAlt: "Crispy fish and chips",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chicken Fried Steak",
|
||||
price: "$18.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg?_wi=1",
|
||||
imageAlt: "Homestyle chicken fried steak",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Pastrami Burger",
|
||||
price: "$15.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg?_wi=1",
|
||||
imageAlt: "Gourmet pastrami burger",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "French Toast",
|
||||
price: "$13.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg?_wi=1",
|
||||
imageAlt: "Eggy homemade french toast",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user