Compare commits
29 Commits
version_38
...
version_45
| Author | SHA1 | Date | |
|---|---|---|---|
| 8518f7d41c | |||
| 020bc607aa | |||
| cf71d5cebd | |||
| 48bfc870ba | |||
| 25f329c290 | |||
| 08e2191322 | |||
| ba9400c45c | |||
| abdf3cc4a3 | |||
| 1df388d364 | |||
| 0d3d94d006 | |||
| baa107b9c5 | |||
| a19215a0df | |||
| 6207baa4b2 | |||
| 2481bc2110 | |||
| 9448072dad | |||
| cacac236f8 | |||
| 1fbdac3984 | |||
| 532bc23c33 | |||
| 59f63cfb11 | |||
| a558504f33 | |||
| 18bc64a2d2 | |||
| c18c17b8bb | |||
| ab172f1410 | |||
| 7c8aad9ad5 | |||
| 15b886192c | |||
| dcef8c307e | |||
| 869609dc74 | |||
| 446d8e8685 | |||
| 3d163bb5fd |
@@ -26,7 +26,6 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
{ name: "Request a free estimate", id: "/estimate" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="CleanScene"
|
||||||
@@ -53,7 +52,7 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene"
|
logoText="CleanScene"
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ export default function EstimatePage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
{ name: "Request a free estimate", id: "/estimate" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="CleanScene"
|
||||||
@@ -38,16 +37,18 @@ export default function EstimatePage() {
|
|||||||
<div id="estimate-form" data-section="estimate-form">
|
<div id="estimate-form" data-section="estimate-form">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Get Your Free Estimate"
|
title="Request a free estimate"
|
||||||
titleClassName="text-[#0a7039]"
|
titleClassName="text-[#0a7039]"
|
||||||
description="Fill out the details below, and we will provide a comprehensive quote for your event."
|
description="Tell us about your event. We typically respond within 24 business hours."
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
{ name: "full_name", type: "text", placeholder: "Full Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
{ name: "event_type", type: "text", placeholder: "Event Type", required: true },
|
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||||
{ name: "event_date", type: "date", placeholder: "Event Date", required: true },
|
{ name: "event_date", type: "date", placeholder: "Event Date", required: true },
|
||||||
|
{ name: "address", type: "text", placeholder: "Delivery Address", required: true },
|
||||||
|
{ name: "event_type", type: "text", placeholder: "Event Type", required: true },
|
||||||
]}
|
]}
|
||||||
textarea={{ name: "details", placeholder: "Additional event details or specific requirements...", rows: 5 }}
|
textarea={{ name: "other_info", placeholder: "Other info (Optional)", rows: 5 }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/event-planner-organizing-wedding-details_23-2148197779.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/event-planner-organizing-wedding-details_23-2148197779.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -55,7 +56,7 @@ export default function EstimatePage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene"
|
logoText="CleanScene"
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
{ name: "Request a free estimate", id: "/estimate" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="CleanScene"
|
||||||
@@ -55,7 +54,7 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene"
|
logoText="CleanScene"
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
{ name: "Request a free estimate", id: "/estimate" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="CleanScene"
|
||||||
@@ -119,7 +118,7 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene"
|
logoText="CleanScene"
|
||||||
|
|||||||
Reference in New Issue
Block a user