69 lines
2.6 KiB
TypeScript
69 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Mulish } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Tico Pan Bakery - Taste Costa Rica. Feel Everything.',
|
|
description: 'Experience authentic, luxury Latin pastries from Tico Pan Bakery in Lincolnton, NC. With a 4.5-star rating, enjoy flaky, creamy, fresh daily treats and easy takeout—a sensual escape to Costa Rica through traditional flavors like Carrot Cake and Churro. Our menu typically ranges from $3-$8 per item, making a delightful experience accessible for everyone.',
|
|
keywords: ["Tico Pan Bakery, Latin pastries, Costa Rican bakery, authentic desserts, luxury bakery, nostalgic food, artisanal pastries, dulce de leche, tres leches, churros, empanadas, pan de bono"],
|
|
openGraph: {
|
|
"title": "Tico Pan Bakery - Taste Costa Rica. Feel Everything.",
|
|
"description": "Experience authentic, luxury Latin pastries from Tico Pan Bakery. Flaky, creamy, fresh daily—a sensual escape to Costa Rica through traditional flavors.",
|
|
"url": "https://www.ticopanbakery.com",
|
|
"siteName": "Tico Pan Bakery",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/sophisticated-tea-party-assortment_23-2149045921.jpg",
|
|
"alt": "Assorted Costa Rican pastries"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Tico Pan Bakery - Taste Costa Rica. Feel Everything.",
|
|
"description": "Experience authentic, luxury Latin pastries from Tico Pan Bakery. Flaky, creamy, fresh daily—a sensual escape to Costa Rica through traditional flavors.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/sophisticated-tea-party-assortment_23-2149045921.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const mulish = Mulish({
|
|
variable: "--font-mulish", subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${mulish.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|