Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -1,55 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "RURAL Tamarindo | Authentic Costa Rican Food", description: "Experience authentic Costa Rican cuisine at RURAL Tamarindo. Rustic outdoor dining, affordable prices, pet-friendly. Traditional tico dishes loved by tourists and locals.", keywords: "Costa Rican restaurant, Tamarindo food, authentic tico cuisine, ceviche, affordable dining, rustic restaurant", openGraph: {
|
||||
title: "RURAL Tamarindo | Authentic Costa Rican Cuisine", description: "Rustic, tropical dining celebrating traditional Costa Rican flavors. Affordable prices, cozy atmosphere, pet-friendly.", siteName: "RURAL Tamarindo", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/girl-with-beer-waiting-her-friends_23-2147680569.jpg", alt: "RURAL Tamarindo rustic restaurant"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "RURAL Tamarindo | Authentic Costa Rican Food", description: "Experience pura vida dining: authentic tico cuisine, rustic charm, affordable prices. Tamarindo's favorite local spot.", images: ["http://img.b2bpic.net/free-photo/girl-with-beer-waiting-her-friends_23-2147680569.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -128,7 +128,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
title="Why We Shine"
|
||||
title="Trusted by Thousands | 4.6★ Rated"
|
||||
description="Trusted by thousands of diners since opening."
|
||||
metrics={[
|
||||
{ id: "1", value: "4.6★", description: "Google & Trip Advisor Rating" },
|
||||
@@ -140,6 +140,10 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "See All Reviews", href: "#testimonial" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user