Merge version_3 into main #6

Merged
bender merged 2 commits from version_3 into main 2026-03-07 23:53:01 +00:00
2 changed files with 23 additions and 42 deletions

View File

@@ -1,17 +1,11 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Carnitas House | Authentic Mexican Tacos & Carnitas", description: "Authentic tacos and fresh carnitas made daily in the San Gabriel Valley. Local favorite with outdoor seating, live music, and catering available."};
title: "Carnitas House - Authentic Tacos & Local Flavor", description: "Home of the carnitas everyone talks about. Authentic tacos, fresh carnitas made daily, and outdoor vibes in the San Gabriel Valley."};
export default function RootLayout({
children,
@@ -19,10 +13,8 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1390,17 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
<script
dangerouslySetInnerHTML={{
__html: `
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
`,
}}
/>
</html>
);
}

View File

@@ -171,24 +171,24 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Ready for the best tacos?"
ctaDescription="Stop by and experience authentic Mexican flavors in a welcoming, family-friendly environment. We're here for you."
ctaButton={{ text: "Visit Us Today", href: "https://maps.google.com" }}
ctaDescription="Call us now to place an order, ask about catering, or just stop by. We're open for lunch and dinner."
ctaButton={{ text: "Call (626) 555-0147", href: "tel:(626)555-0147" }}
ctaIcon={Phone}
faqs={[
{
id: "1", title: "What are your hours?", content: "Monday through Sunday, 11am to 9pm. Fresh carnitas and tacos all day, every day. Come for lunch, dinner, or a late-night bite!"
id: "1", title: "What are your hours?", content: "We're open Monday through Sunday, 11am to 9pm. Join us for lunch, dinner, or a late-night snack!"
},
{
id: "2", title: "Do you do catering?", content: "Absolutely! Family gatherings, corporate events, celebrations—we bring authentic carnitas and homemade tacos to your table. Call for custom quotes."
id: "2", title: "Do you offer catering?", content: "Yes! We love catering events. Whether it's a small office gathering or a big party, we'll bring authentic carnitas and fresh tacos. Call us to discuss your event."
},
{
id: "3", title: "Carnitas by the pound?", content: "Yes. Our slow-cooked carnitas are beloved by families and businesses alike. Order by the pound for your next gathering or meal prep."
id: "3", title: "Can I order carnitas by the pound?", content: "Absolutely. Our carnitas are so popular, customers order them by the pound. Just call ahead to make sure we have enough fresh carnitas ready for your order."
},
{
id: "4", title: "Outdoor seating?", content: "Our outdoor patio is perfect for a relaxed, authentic experience under the stars. Some weekends we even have live music—it's where the community comes together."
id: "4", title: "Do you have outdoor seating?", content: "Yes! Our outdoor seating is one of our favorite features. Relax under the stars with great food and friends. Some nights we even have live music."
},
{
id: "5", title: "Everything homemade?", content: "From salsas to carnitas to tortillas—everything is made fresh daily using traditional recipes and authentic ingredients. That's our promise."
id: "5", title: "Is the salsa homemade?", content: "Everything is made fresh daily, including our salsa verde and red salsa. We use authentic ingredients and traditional recipes."
}
]}
useInvertedBackground={false}
@@ -202,31 +202,31 @@ export default function LandingPage() {
<FooterBaseReveal
columns={[
{
title: "Navigate", items: [
title: "Quick Links", items: [
{ label: "Home", href: "#home" },
{ label: "Menu", href: "#menu" },
{ label: "Our Story", href: "#about" },
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Services", items: [
{ label: "Catering", href: "tel:(626)555-0147" },
{ label: "Catering", href: "#catering" },
{ label: "Bulk Orders", href: "tel:(626)555-0147" },
{ label: "Events", href: "tel:(626)555-0147" },
{ label: "Family Gatherings", href: "tel:(626)555-0147" }
{ label: "Corporate Events", href: "tel:(626)555-0147" },
{ label: "Party Packages", href: "tel:(626)555-0147" }
]
},
{
title: "Community", items: [
{ label: "Instagram", href: "https://instagram.com" },
title: "Connect", items: [
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Find Us", href: "https://maps.google.com" },
{ label: "Call", href: "tel:(626)555-0147" }
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Call Us", href: "tel:(626)555-0147" },
{ label: "Visit Us", href: "https://maps.google.com" }
]
}
]}
copyrightText="© 2025 Carnitas House. Authentic flavor, real heart, true community."
copyrightText="© 2025 Carnitas House. All rights reserved. Local flavor, authentic soul."
/>
</div>
</ThemeProvider>