3 Commits

Author SHA1 Message Date
856e93ee4c Update src/app/page.tsx 2026-03-08 20:17:15 +00:00
e4d8e1a571 Update src/app/layout.tsx 2026-03-08 20:17:14 +00:00
6041c44dfb Merge version_1 into main
Merge version_1 into main
2026-03-08 20:00:11 +00:00
2 changed files with 17 additions and 41 deletions

View File

@@ -1,55 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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: "Create Next App", description: "Generated by create next app"};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -128,7 +128,7 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardTwo <MetricCardTwo
title="Why We Shine" title="Trusted by Thousands | 4.6★ Rated"
description="Trusted by thousands of diners since opening." description="Trusted by thousands of diners since opening."
metrics={[ metrics={[
{ id: "1", value: "4.6★", description: "Google & Trip Advisor Rating" }, { id: "1", value: "4.6★", description: "Google & Trip Advisor Rating" },
@@ -140,6 +140,10 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[
{ text: "See All Reviews", href: "#testimonial" }
]}
buttonAnimation="slide-up"
/> />
</div> </div>