Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 05:59:53 +00:00
2 changed files with 12 additions and 41 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Taco El Niño - Authentic Mexican Food Truck", description: "Discover authentic Mexican street tacos at Taco El Niño. Fresh ingredients, traditional recipes, and exceptional taste. Find us today!", keywords: "tacos, Mexican food, food truck, street food, carnitas, al pastor, fish tacos", openGraph: {
title: "Taco El Niño - Authentic Mexican Street Tacos", description: "Experience authentic Mexican tacos crafted with fresh ingredients and traditional recipes at Taco El Niño.", siteName: "Taco El Niño", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/mexican-food-composition_23-2147640314.jpg", alt: "Taco El Niño signature tacos"},
],
},
twitter: {
card: "summary_large_image", title: "Taco El Niño - Authentic Mexican Tacos", description: "Fresh, authentic, delicious. Find Taco El Niño food truck today!", images: ["http://img.b2bpic.net/free-photo/mexican-food-composition_23-2147640314.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Taco El Niño", description: "Authentic Mexican street tacos crafted with premium ingredients and traditional recipes."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -89,6 +89,12 @@ export default function TacoElNinoPage() {
id: "2", name: "Al Pastor Tacos", price: "$5.49", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-arrangement_23-2150878289.jpg?_wi=2", imageAlt: "Al pastor tacos"},
{
id: "3", name: "Fish Tacos", price: "$5.99", imageSrc: "http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-100135.jpg?_wi=2", imageAlt: "Fish tacos"},
{
id: "4", name: "Carne Asada Tacos", price: "$5.49", imageSrc: "http://img.b2bpic.net/free-photo/mexican-food-composition_23-2147640314.jpg?_wi=2", imageAlt: "Carne asada tacos"},
{
id: "5", name: "Agua Fresca", price: "$2.99", imageSrc: "http://img.b2bpic.net/free-photo/view-green-bundle-fresh-whole-green-peppers-wooden-cutting-board-knife-right-side-black-distressed-surface_179666-42301.jpg?_wi=2", imageAlt: "Agua fresca beverage"},
{
id: "6", name: "Churros", price: "$3.49", imageSrc: "http://img.b2bpic.net/free-photo/delicious-tacos-arrangement_23-2150878289.jpg?_wi=3", imageAlt: "Fresh churros dessert"},
]}
/>
</div>