3 Commits

Author SHA1 Message Date
c3712d0e71 Update src/app/page.tsx 2026-03-07 04:12:22 +00:00
491025255b Update src/app/layout.tsx 2026-03-07 04:12:21 +00:00
5f844a0fca Merge version_1 into main
Merge version_1 into main
2026-03-07 04:09:54 +00:00
2 changed files with 13 additions and 35 deletions

View File

@@ -1,49 +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 { 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={{
__html: ` __html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -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>