Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-03 23:37:57 +00:00
2 changed files with 8 additions and 53 deletions

View File

@@ -1,64 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Que Taco - Authentic Mexican Street Tacos in Lexington, KY", description: "Que Taco brings fresh, handcrafted Mexican street food to Lexington. Find our locations, hours, menu and more.", keywords: "tacos near me, Mexican food Lexington, food truck, authentic tacos, street tacos", metadataBase: new URL("https://www.quetatco.com"),
alternates: {
canonical: "https://www.quetatco.com"
},
openGraph: {
title: "Que Taco - Authentic Mexican Street Tacos in Lexington", description: "Fresh, handcrafted tacos made daily from the best ingredients", url: "https://www.quetatco.com", siteName: "Que Taco", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/diet-healthy-tacos-with-pork-avocado-wooden-background-selective-focusgenerative-ai_1258-153035.jpg", alt: "Que Taco authentic street tacos"
}
]
},
twitter: {
card: "summary_large_image", title: "Que Taco - Authentic Tacos in Lexington, KY", description: "Handcrafted Mexican street food from our signature trucks", images: ["http://img.b2bpic.net/free-photo/diet-healthy-tacos-with-pork-avocado-wooden-background-selective-focusgenerative-ai_1258-153035.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Que Taco - Authentic Street Tacos in Lexington", description: "Find authentic, handcrafted Mexican street food from Que Taco. Fresh tacos, real flavor on your street in Lexington."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1426,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -157,8 +157,8 @@ export default function LandingPage() {
title="Ready to Taste Authentic Tacos?"
description="Follow us on social media for real-time location updates, menu specials, and daily truck schedules. Can't find us? Send us a message and we'll let you know exactly where we'll be."
buttons={[
{ text: "Follow on Instagram", href: "https://instagram.com/quetatco" },
{ text: "Call (859) 555-TACO", href: "tel:+18595558226" }
{ text: "Call (859) 555-TACO", href: "tel:+18595558226" },
{ text: "Follow on Instagram", href: "https://instagram.com/quetatco" }
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={true}