Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b026b9491 | |||
| 000385a6d2 | |||
| bf54e5a2c0 | |||
| 696a652780 | |||
| 35e2417a50 | |||
| 1d4c3c719a | |||
| 2f71c4b04a |
@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Lato } from "next/font/google";
|
import { Lato } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -14,9 +15,10 @@ export const metadata: Metadata = {
|
|||||||
description: 'Experience authentic Mexican cuisine elevated to luxury dining. Award-winning margaritas, fresh guacamole, and unforgettable atmosphere. Reserve your table today.',
|
description: 'Experience authentic Mexican cuisine elevated to luxury dining. Award-winning margaritas, fresh guacamole, and unforgettable atmosphere. Reserve your table today.',
|
||||||
};
|
};
|
||||||
|
|
||||||
const lato = Lato({
|
|
||||||
variable: "--font-lato", subsets: ["latin"],
|
const dmSans = DM_Sans({
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
variable: "--font-dm-sans",
|
||||||
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -27,7 +29,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${lato.variable} antialiased`}>
|
<body className={`${dmSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
@@ -42,18 +42,32 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroBillboardGallery
|
||||||
logoText="Las Palmas"
|
title="Las Palmas"
|
||||||
description="The Flavor of Mexico, Elevated. Authentic Mexican cuisine, handcrafted margaritas, and an unforgettable atmosphere where every detail is designed for indulgence."
|
description="The Flavor of Mexico, Elevated. Authentic Mexican cuisine, handcrafted margaritas, and an unforgettable atmosphere where every detail is designed for indulgence."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
|
tag="Luxury Mexican Dining"
|
||||||
|
tagIcon={Sparkles}
|
||||||
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Reserve a Table", href: "#contact" },
|
{ text: "Reserve a Table", href: "#contact" },
|
||||||
{ text: "View Menu", href: "#featured" }
|
{ text: "View Menu", href: "#featured" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
layoutOrder="default"
|
mediaItems={[
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/fresh-detox-with-vegetables-herbs-wooden-desk_141793-17457.jpg"
|
{
|
||||||
imageAlt="Luxury margarita cocktail"
|
imageSrc: "http://img.b2bpic.net/free-photo/fresh-detox-with-vegetables-herbs-wooden-desk_141793-17457.jpg", imageAlt: "Luxury margarita cocktail"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/man-decorating-cocktail-glass-with-mint_23-2148454454.jpg?_wi=1", imageAlt: "Handcrafted margarita"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-100135.jpg?_wi=1", imageAlt: "Premium birria tacos"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hummus-vegetables_23-2149483910.jpg?_wi=1", imageAlt: "Fresh guacamole preparation"
|
||||||
|
}
|
||||||
|
]}
|
||||||
mediaAnimation="opacity"
|
mediaAnimation="opacity"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -85,15 +99,15 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Handcrafted Margaritas", description: "Experience our signature margaritas, including the beloved jalapeño and tropical mango varieties. Each drink is crafted with premium tequila, fresh citrus, and our secret mix.", imageSrc: "http://img.b2bpic.net/free-photo/man-decorating-cocktail-glass-with-mint_23-2148454454.jpg", imageAlt: "Jalapeño margarita"
|
title: "Handcrafted Margaritas", description: "Experience our signature margaritas, including the beloved jalapeño and tropical mango varieties. Each drink is crafted with premium tequila, fresh citrus, and our secret mix.", imageSrc: "http://img.b2bpic.net/free-photo/man-decorating-cocktail-glass-with-mint_23-2148454454.jpg?_wi=2", imageAlt: "Jalapeño margarita"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Birria Tacos", description: "Our most celebrated dish: tender, slow-cooked birria served in crispy corn tortillas with rich consomé for dipping. A true taste of culinary authenticity.", imageSrc: "http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-100135.jpg", imageAlt: "Premium birria tacos"
|
title: "Birria Tacos", description: "Our most celebrated dish: tender, slow-cooked birria served in crispy corn tortillas with rich consomé for dipping. A true taste of culinary authenticity.", imageSrc: "http://img.b2bpic.net/free-photo/homemade-chicken-tacos-food-recipe-idea_53876-100135.jpg?_wi=2", imageAlt: "Premium birria tacos"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Tableside Guacamole", description: "Fresh avocado, lime, cilantro, and tomato blended to perfection right at your table. A ritual of indulgence that guests never forget.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-hummus-vegetables_23-2149483910.jpg", imageAlt: "Fresh guacamole preparation"
|
title: "Tableside Guacamole", description: "Fresh avocado, lime, cilantro, and tomato blended to perfection right at your table. A ritual of indulgence that guests never forget.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-hummus-vegetables_23-2149483910.jpg?_wi=2", imageAlt: "Fresh guacamole preparation"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-lato), sans-serif;
|
font-family: var(--font-dm-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-lato), sans-serif;
|
font-family: var(--font-dm-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user