Merge version_2 into main #2
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "El Sueño Honduran Grill - Authentic Tacos & Margaritas in Huntington Station", description: "Award-winning Latin restaurant in Huntington, NY. Fresh tacos, carne asada, margaritas & more. Order online, call 631-635-4321 or book a reservation today.", keywords: "tacos Huntington Station, Mexican restaurant NY, carne asada, birria tacos, margaritas, Latin food near me, authentic Mexican cuisine", metadataBase: new URL("https://elsueno-huntington.com"),
|
||||
alternates: {
|
||||
canonical: "https://elsueno-huntington.com"},
|
||||
openGraph: {
|
||||
title: "El Sueño Honduran Grill - Authentic Tacos & Margaritas", description: "Your neighborhood favorite for fresh tacos, guacamole & legendary margaritas. 4.3★ rated by 250+ local reviews.", url: "https://elsueno-huntington.com", siteName: "El Sueño Honduran Grill", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/homemade-michelada-cocktail-with-beer-lime-juicehot-saucesalted-rim-tomato-juice-wooden-table_123827-21881.jpg", alt: "Fresh tacos and margarita from El Sueño"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "El Sueño Honduran Grill", description: "Authentic tacos, fresh guacamole & margaritas. Your neighborhood favorite.", images: ["http://img.b2bpic.net/free-photo/homemade-michelada-cocktail-with-beer-lime-juicehot-saucesalted-rim-tomato-juice-wooden-table_123827-21881.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "El Sueño Honduran Grill", description: "Authentic tacos, fresh guacamole, and legendary margaritas in Huntington Station"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -166,6 +166,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "6", name: "Carlos Hernandez", role: "Longtime Friend", testimonial:
|
||||
"El Sueño has been my family's favorite for years. The owner treats every customer like family. This is what community dining should feel like.", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "1", name: "Maria Rodriguez", role: "Local Resident", testimonial:
|
||||
"The birria tacos are absolutely incredible. I've tried them everywhere on Long Island, and El Sueño's are the best. The staff is so friendly and the margaritas are strong!", icon: Heart,
|
||||
@@ -186,10 +190,6 @@ export default function LandingPage() {
|
||||
id: "5", name: "Lisa Wong", role: "Food Enthusiast", testimonial:
|
||||
"Finally, authentic Mexican food in Huntington! The al pastor tacos taste like they came straight from Mexico City. Highly recommend to everyone.", icon: Flame,
|
||||
},
|
||||
{
|
||||
id: "6", name: "Carlos Hernandez", role: "Longtime Friend", testimonial:
|
||||
"El Sueño has been my family's favorite for years. The owner treats every customer like family. This is what community dining should feel like.", icon: Users,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user