Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70d9744ebf | |||
| 26df9ba228 | |||
| e7d04c4d9b | |||
| f941057dd5 | |||
| 6d18416127 | |||
| 6105f238ea |
1407
src/app/layout.tsx
1407
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Award, MapPin, Phone } from "lucide-react";
|
||||
import { Award, MapPin, Phone, Clock } from "lucide-react";
|
||||
|
||||
const navItems = [
|
||||
{ name: "Menu", id: "menu" },
|
||||
@@ -23,16 +23,13 @@ const navButton = {
|
||||
const heroProps = {
|
||||
title: "The Best Pizza in Midland. Two Years Running.", description: "48-hour fermented dough. Real wood-fired pizza. Limited daily availability.", tag: "MRT Best of Midland 2024 & 2025", tagIcon: Award,
|
||||
background: { variant: "plain" as const },
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATOPwaLclIhBPrud8y1xTqDki0/uploaded-1772617011051-vili4pw9.png", imageAlt: "Wood-fired pizza fresh from oven", imagePosition: "right" as const,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATOPwaLclIhBPrud8y1xTqDki0/uploaded-1772687590212-yndftf0s.png", imageAlt: "Wood-fired pizza fresh from oven", imagePosition: "right" as const,
|
||||
mediaAnimation: "blur-reveal" as const,
|
||||
buttons: [
|
||||
{ text: "Reserve Your Slice", href: "#menu" },
|
||||
{ text: "Call Now", href: "tel:+16325551234" }
|
||||
],
|
||||
buttonAnimation: "blur-reveal" as const,
|
||||
containerClassName: "bg-cover bg-center bg-no-repeat", className: "min-h-screen", style: {
|
||||
backgroundImage: "url('https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATOPwaLclIhBPrud8y1xTqDki0/uploaded-1772617011051-vili4pw9.png')", backgroundAttachment: "fixed", backgroundPosition: "center"
|
||||
}
|
||||
buttonAnimation: "blur-reveal" as const
|
||||
};
|
||||
|
||||
const philosophyProps = {
|
||||
@@ -92,13 +89,13 @@ const menuProps = {
|
||||
|
||||
const locationFaqs = [
|
||||
{
|
||||
id: "hours-tue-wed-sat", title: "Tuesday, Wednesday, Saturday", content: "11am–2pm. Until sold out."
|
||||
id: "hours-tue-wed-sat", title: "Tuesday, Wednesday, Saturday", content: "<div class='space-y-2'><p class='font-semibold'>11am–2pm</p><p class='text-sm opacity-75'>Until sold out.</p></div>"
|
||||
},
|
||||
{
|
||||
id: "hours-thu-fri", title: "Thursday, Friday", content: "11am–2pm / 4pm–7pm. Until sold out."
|
||||
id: "hours-thu-fri", title: "Thursday, Friday", content: "<div class='space-y-2'><p class='font-semibold'>11am–2pm / 4pm–7pm</p><p class='text-sm opacity-75'>Until sold out.</p></div>"
|
||||
},
|
||||
{
|
||||
id: "hours-sun-mon", title: "Sunday, Monday", content: "Closed. Resting the dough."
|
||||
id: "hours-sun-mon", title: "Sunday, Monday", content: "<div class='space-y-2'><p class='font-semibold'>Closed</p><p class='text-sm opacity-75'>Resting the dough.</p></div>"
|
||||
},
|
||||
{
|
||||
id: "ordering", title: "How to Order", content: "Call to place an order. We prepare fresh wood-fired pizzas to order. Limited daily availability."
|
||||
@@ -176,7 +173,7 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero" style={{ backgroundImage: "url('https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATOPwaLclIhBPrud8y1xTqDki0/uploaded-1772617011051-vili4pw9.png')", backgroundSize: "cover", backgroundPosition: "center", backgroundAttachment: "fixed" }}>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit {...heroProps} />
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user