Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7046b60dcb | |||
| 1a26c8c840 |
254
src/app/page.tsx
254
src/app/page.tsx
@@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
@@ -28,28 +28,13 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Señor Beef"
|
||||
/>
|
||||
@@ -57,70 +42,27 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Experience the Finest Beef in California"
|
||||
description="At Señor Beef, we curate only the highest quality cuts, prepared with passion and served in an atmosphere of refined elegance. Discover the true taste of premium quality."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/adorable-lovely-woman-fashion-clothes-is-sitting-open-air-cafe-is-using-smartphone-waiting-friends-city-lights-background_291650-842.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598345.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pancakes-colored-coffee_1321-880.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/adorable-lovely-woman-fashion-clothes-is-sitting-open-air-cafe-is-using-smartphone-waiting-friends-city-lights-background_291650-842.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598345.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/pancakes-colored-coffee_1321-880.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg", alt: "Customer" },
|
||||
]}
|
||||
avatarText="Loved by thousands of food enthusiasts across CA"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "View Menu", href: "#products" },
|
||||
{ text: "Book a Table", href: "#contact" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Locally Sourced",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Dry-Aged",
|
||||
icon: Beef,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Charcoal Grilled",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Premium Cuts",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "California Origin",
|
||||
icon: MapPin,
|
||||
},
|
||||
{ type: "text-icon", text: "Locally Sourced", icon: Leaf },
|
||||
{ type: "text-icon", text: "Dry-Aged", icon: Beef },
|
||||
{ type: "text-icon", text: "Charcoal Grilled", icon: Flame },
|
||||
{ type: "text-icon", text: "Premium Cuts", icon: Award },
|
||||
{ type: "text-icon", text: "California Origin", icon: MapPin },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -130,9 +72,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="A Legacy of Quality"
|
||||
description={[
|
||||
"Señor Beef was founded with a singular mission: to bring world-class steakhouse quality to the heart of California. We partner exclusively with local, ethical ranches to ensure every plate meets our exacting standards.",
|
||||
"From our signature dry-aging process to the precision of our charcoal grills, every detail is engineered for the ultimate dining experience. Welcome to a higher standard of flavor.",
|
||||
]}
|
||||
"Señor Beef was founded with a singular mission: to bring world-class steakhouse quality to the heart of California. We partner exclusively with local, ethical ranches to ensure every plate meets our exacting standards.", "From our signature dry-aging process to the precision of our charcoal grills, every detail is engineered for the ultimate dining experience. Welcome to a higher standard of flavor."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -143,60 +83,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Signature",
|
||||
name: "Prime Ribeye",
|
||||
price: "$65",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-piece-meat-potatoes-fried-tomato_140725-6649.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Classic",
|
||||
name: "Beef Tacos Trio",
|
||||
price: "$28",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mexican-food-with-onions_23-2148614393.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Artisan",
|
||||
name: "Premium Roast Beef",
|
||||
price: "$32",
|
||||
rating: 4,
|
||||
reviewCount: "56",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-person-holding-burger-with-fried-egg_23-2148784520.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Appetizer",
|
||||
name: "Grilled Beef Skewers",
|
||||
price: "$24",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-table-top-view_140725-9675.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Signature",
|
||||
name: "Smoked Brisket",
|
||||
price: "$48",
|
||||
rating: 5,
|
||||
reviewCount: "112",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-from-side-yummy-snack-plate-lying-table_651396-1435.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Luxury",
|
||||
name: "Filet Mignon",
|
||||
price: "$72",
|
||||
rating: 5,
|
||||
reviewCount: "78",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-arugula-grilled-eggplants_141793-744.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Signature", name: "Prime Ribeye", price: "$65", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/fried-piece-meat-potatoes-fried-tomato_140725-6649.jpg" },
|
||||
{ id: "p2", brand: "Classic", name: "Beef Tacos Trio", price: "$28", rating: 5, reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mexican-food-with-onions_23-2148614393.jpg" },
|
||||
{ id: "p3", brand: "Artisan", name: "Premium Roast Beef", price: "$32", rating: 4, reviewCount: "56", imageSrc: "http://img.b2bpic.net/free-photo/front-view-person-holding-burger-with-fried-egg_23-2148784520.jpg" },
|
||||
{ id: "p4", brand: "Appetizer", name: "Grilled Beef Skewers", price: "$24", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-table-top-view_140725-9675.jpg" },
|
||||
{ id: "p5", brand: "Signature", name: "Smoked Brisket", price: "$48", rating: 5, reviewCount: "112", imageSrc: "http://img.b2bpic.net/free-photo/view-from-side-yummy-snack-plate-lying-table_651396-1435.jpg" },
|
||||
{ id: "p6", brand: "Luxury", name: "Filet Mignon", price: "$72", rating: 5, reviewCount: "78", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-arugula-grilled-eggplants_141793-744.jpg" },
|
||||
]}
|
||||
title="Our Signature Selections"
|
||||
description="Hand-cut, precision-grilled, and delivered with perfection."
|
||||
@@ -207,31 +99,11 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Michael R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Jessica L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adorable-lovely-woman-fashion-clothes-is-sitting-open-air-cafe-is-using-smartphone-waiting-friends-city-lights-background_291650-842.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "David M.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598345.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Sarah K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pancakes-colored-coffee_1321-880.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Robert B.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Michael R.", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg" },
|
||||
{ id: "t2", name: "Jessica L.", imageSrc: "http://img.b2bpic.net/free-photo/adorable-lovely-woman-fashion-clothes-is-sitting-open-air-cafe-is-using-smartphone-waiting-friends-city-lights-background_291650-842.jpg" },
|
||||
{ id: "t3", name: "David M.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598345.jpg" },
|
||||
{ id: "t4", name: "Sarah K.", imageSrc: "http://img.b2bpic.net/free-photo/pancakes-colored-coffee_1321-880.jpg" },
|
||||
{ id: "t5", name: "Robert B.", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg" },
|
||||
]}
|
||||
cardTitle="What Our Guests Say"
|
||||
cardTag="Testimonials"
|
||||
@@ -244,21 +116,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you accept reservations?",
|
||||
content: "Yes, we highly recommend booking in advance through our website to secure your table.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Where is the beef sourced?",
|
||||
content: "We source all our beef from local California ranches that prioritize animal welfare and sustainable practices.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Are there vegetarian options?",
|
||||
content: "While we specialize in beef, we offer a carefully curated selection of vegetarian sides and seasonal salads.",
|
||||
},
|
||||
{ id: "f1", title: "Do you accept reservations?", content: "Yes, we highly recommend booking in advance through our website to secure your table." },
|
||||
{ id: "f2", title: "Where is the beef sourced?", content: "We source all our beef from local California ranches that prioritize animal welfare and sustainable practices." },
|
||||
{ id: "f3", title: "Are there vegetarian options?", content: "While we specialize in beef, we offer a carefully curated selection of vegetarian sides and seasonal salads." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-147887.jpg"
|
||||
title="Common Questions"
|
||||
@@ -271,21 +131,13 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us"
|
||||
title="Reserve Your Experience"
|
||||
description="Ready to taste the best beef in California? Reach out today to book your table or for any inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now",
|
||||
href: "tel:555-0123",
|
||||
},
|
||||
{
|
||||
text: "Email Us",
|
||||
href: "mailto:hello@senorbeef.com",
|
||||
},
|
||||
{ text: "Book Now", href: "tel:555-0123" },
|
||||
{ text: "Email Us", href: "mailto:hello@senorbeef.com" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -295,34 +147,16 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Our Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Reservations",
|
||||
href: "#contact",
|
||||
},
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Menu", href: "#products" },
|
||||
{ label: "Reservations", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user