Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e9dd9fb6d | |||
| c3712d0e71 | |||
| 491025255b | |||
| 5f844a0fca |
@@ -1,48 +1,27 @@
|
|||||||
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 { Montserrat } 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 montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "La Casita Refresqueria | Premium Hand-Crafted Beverages", description: "Discover authentic, hand-crafted refreshments at La Casita Refresqueria. Premium juices, smoothies, and traditional aguas frescas made with the finest ingredients.", keywords: "refreshment, beverages, juices, smoothies, aguas frescas, local business, traditional drinks", openGraph: {
|
title: "La Casita Refresqueria", description: "Authentic, hand-crafted beverages that bring joy to every sip."};
|
||||||
title: "La Casita Refresqueria | Premium Beverages", description: "Authentic, hand-crafted refreshments for every occasion", siteName: "La Casita Refresqueria", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "La Casita Refresqueria", description: "Premium Hand-Crafted Beverages"},
|
|
||||||
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} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1411,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,8 +48,8 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/typical-brazilian-freezies-still-life_23-2150171691.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/typical-brazilian-freezies-still-life_23-2150171691.jpg"
|
||||||
imageAlt="Vibrant refreshing beverages"
|
imageAlt="Vibrant refreshing beverages"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Order Now", href: "#contact" },
|
|
||||||
{ text: "Learn More", href: "#about" },
|
{ text: "Learn More", href: "#about" },
|
||||||
|
{ text: "Order Fresh Today", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user