Compare commits
65 Commits
version_6
...
version_15
| Author | SHA1 | Date | |
|---|---|---|---|
| 59d347b2c1 | |||
| 6d328b7a47 | |||
| bb34c5cc31 | |||
| 76892d4d9a | |||
| 02c5673193 | |||
| 2f172a3ea8 | |||
| 915ac91c15 | |||
| 9911aaff44 | |||
| cbe3ea9f47 | |||
| 1c50cfa52d | |||
| a8b20a84e6 | |||
| fb0b631dcf | |||
| 3bcbf63741 | |||
| cb49c39329 | |||
| 7db265ec71 | |||
| 5d8a4566bb | |||
| bb07ae85ba | |||
| 0594e6b8cb | |||
| 82cf416f96 | |||
| 84debe7d1c | |||
| 943799f2e0 | |||
| acfe6a9df8 | |||
| a8ded39087 | |||
| 6d1e26dd50 | |||
| b5ca2643f1 | |||
| 050f19e986 | |||
| a8017f5724 | |||
| 33a2e39d39 | |||
| 2dc39bb2cf | |||
| 92112155e5 | |||
| d3af33e7e3 | |||
| d61045c9d8 | |||
| 6faecaf23b | |||
| 5eee8ce6be | |||
| f75e59e5c0 | |||
| 49d24c1598 | |||
| a5785f7aa0 | |||
| 09d317c2cc | |||
| 160c43773f | |||
| 739b1c961b | |||
| b8bc880f53 | |||
| 8e8979b40e | |||
| 1ca23e612e | |||
| d199527d15 | |||
| 3dffe3e0d6 | |||
| 486989ba4e | |||
| cd18984b98 | |||
| 6bc7e37de3 | |||
| 0062f1b86c | |||
| f707dd7960 | |||
| c09508a388 | |||
| 22d78ced96 | |||
| b8d4733676 | |||
| dbd615c441 | |||
| 3834fb315c | |||
| 4d995ac093 | |||
| 14f2677bff | |||
| cc6340fcd3 | |||
| cb66bdb6b7 | |||
| 459a30a094 | |||
| 1f54b3f9a1 | |||
| 8d8bea898f | |||
| ad0ba9212d | |||
| 3068ba05e2 | |||
| 068cd18051 |
@@ -1,13 +1,7 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "DeCasa - Premium Wood-Fired Pizza in Midland", description: "The best wood-fired pizza in Midland, TX. 48-hour fermented dough, limited daily availability."};
|
||||
title: "DeCasa - Premium Wood-Fired Pizza in Midland", description: "The best pizza in Midland. 48-hour fermented dough. Real wood-fired pizza. Limited daily availability."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -16,9 +10,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -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, Clock } from "lucide-react";
|
||||
import { Award, MapPin, Phone } from "lucide-react";
|
||||
|
||||
const navItems = [
|
||||
{ name: "Menu", id: "menu" },
|
||||
@@ -17,19 +17,22 @@ const navItems = [
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Call Now", href: "tel:+16325551234"
|
||||
text: "Reserve Your Slice", href: "#menu", props: {
|
||||
bgClassName: "bg-[var(--primary-cta)]", textClassName: "text-[var(--primary-cta-text)]"
|
||||
}
|
||||
};
|
||||
|
||||
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-1772687590212-yndftf0s.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-1772694156421-0mg2tc5k.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
|
||||
buttonAnimation: "blur-reveal" as const,
|
||||
containerClassName: "bg-cover bg-center bg-no-repeat", className: "min-h-screen"
|
||||
};
|
||||
|
||||
const philosophyProps = {
|
||||
@@ -89,13 +92,13 @@ const menuProps = {
|
||||
|
||||
const locationFaqs = [
|
||||
{
|
||||
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-tue-wed-sat", title: "Tuesday, Wednesday, Saturday", content: "11am–2pm. 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-thu-fri", title: "Thursday, Friday", content: "11am–2pm / 4pm–7pm. Until sold out."
|
||||
},
|
||||
{
|
||||
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: "hours-sun-mon", title: "Sunday, Monday", content: "Closed. Resting the dough."
|
||||
},
|
||||
{
|
||||
id: "ordering", title: "How to Order", content: "Call to place an order. We prepare fresh wood-fired pizzas to order. Limited daily availability."
|
||||
|
||||
Reference in New Issue
Block a user