9 Commits

Author SHA1 Message Date
2cebcce22b Merge version_3 into main
Merge version_3 into main
2026-03-07 06:01:43 +00:00
abaff1c673 Update src/app/page.tsx 2026-03-07 06:01:39 +00:00
b6e1cd3955 Update src/app/layout.tsx 2026-03-07 06:01:38 +00:00
4afd98718c Merge version_2 into main
Merge version_2 into main
2026-03-07 05:59:53 +00:00
1c07b86899 Update src/app/page.tsx 2026-03-07 05:59:48 +00:00
9915fef0f6 Update src/app/layout.tsx 2026-03-07 05:59:48 +00:00
4d68be44cd Merge version_1 into main
Merge version_1 into main
2026-03-07 05:59:01 +00:00
7d61c87f7c Merge version_1 into main
Merge version_1 into main
2026-03-07 05:58:05 +00:00
468a39ba8a Merge version_1 into main
Merge version_1 into main
2026-03-07 05:57:00 +00:00
2 changed files with 14 additions and 43 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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", description: "Authentic Mexican street tacos crafted with premium ingredients and traditional recipes."};
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,
},
};
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={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </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: "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: "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> </div>
@@ -226,4 +232,4 @@ export default function TacoElNinoPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }