Merge version_2 into main #4
@@ -10,7 +10,7 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { Zap, Star, Sparkles } from 'lucide-react';
|
||||
import { Zap, Star, Sparkles, CheckCircle } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -125,40 +125,40 @@ export default function LandingPage() {
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardTwo
|
||||
title="Amazing Deals & Offers"
|
||||
description="Great prices for delicious pizza every day of the week"
|
||||
title="Professional Survey Service Packages"
|
||||
description="Comprehensive survey solutions tailored to your specific needs and budget"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "deal-1", badge: "Everyday Special", badgeIcon: Sparkles,
|
||||
price: "$5.99", subtitle: "Single Large 2-Topping Pizza", buttons: [
|
||||
{ text: "Add to Order" },
|
||||
id: "survey-1", badge: "Basic Survey", badgeIcon: Sparkles,
|
||||
price: "$299", subtitle: "Essential Site Assessment", buttons: [
|
||||
{ text: "Get Started" },
|
||||
{ text: "Learn More" }
|
||||
],
|
||||
features: [
|
||||
"Any large 2-topping pizza", "Excludes premium toppings", "Valid 7 days a week"
|
||||
"Property boundary mapping", "Elevation measurements", "Site plan delivery", "Valid for 2 years"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "deal-2", badge: "Weekend Combo", badgeIcon: Sparkles,
|
||||
price: "$19.99", subtitle: "2 Large Pizzas + Sides", buttons: [
|
||||
{ text: "Add to Order" },
|
||||
id: "survey-2", badge: "Standard Survey", badgeIcon: CheckCircle,
|
||||
price: "$599", subtitle: "Complete Site Documentation", buttons: [
|
||||
{ text: "Get Started" },
|
||||
{ text: "Learn More" }
|
||||
],
|
||||
features: [
|
||||
"2 large pizzas of your choice", "Free garlic knots or wings", "Valid Friday to Sunday"
|
||||
"Detailed boundary survey", "Topographic mapping", "Utility location services", "CAD drawings included", "Valid for 5 years"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "deal-3", badge: "Party Bundle", badgeIcon: Sparkles,
|
||||
price: "$34.99", subtitle: "Feed a Crowd", buttons: [
|
||||
{ text: "Add to Order" },
|
||||
id: "survey-3", badge: "Premium Survey", badgeIcon: Sparkles,
|
||||
price: "$1,299", subtitle: "Advanced Analysis & Consultation", buttons: [
|
||||
{ text: "Get Started" },
|
||||
{ text: "Learn More" }
|
||||
],
|
||||
features: [
|
||||
"3 large pizzas + appetizers", "2-liter soda included", "Serves 6-8 people"
|
||||
"Full boundary and topographic survey", "Underground utility detection", "3D laser scanning", "Professional consultation", "GPS-grade accuracy", "Valid for 7 years"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -237,40 +237,40 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Order", items: [
|
||||
{ label: "View Menu", href: "#menu" },
|
||||
{ label: "Track Order", href: "#track" },
|
||||
{ label: "Special Deals", href: "#deals" },
|
||||
{ label: "Delivery Info", href: "#delivery" }
|
||||
title: "Services", items: [
|
||||
{ label: "Property Surveys", href: "#" },
|
||||
{ label: "Site Analysis", href: "#" },
|
||||
{ label: "Utility Locating", href: "#" },
|
||||
{ label: "3D Scanning", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Service Areas", items: [
|
||||
{ label: "Downtown District", href: "#" },
|
||||
{ label: "Suburban Zones", href: "#" },
|
||||
{ label: "Industrial Parks", href: "#" },
|
||||
{ label: "Regional Coverage", href: "#" }
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Our Team", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Store Locator", href: "#" },
|
||||
{ label: "Franchise Info", href: "#" }
|
||||
{ label: "Contact", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Help", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Feedback", href: "#" },
|
||||
{ label: "Accessibility", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
{ label: "Allergen Info", href: "#" }
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (555) 123-4567", href: "#" },
|
||||
{ label: "Email: info@surveys.com", href: "#" },
|
||||
{ label: "Office Hours: Mon-Fri 8am-6pm", href: "#" },
|
||||
{ label: "Emergency: (555) 123-4568", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2025 Domino's Pizza. All rights reserved."
|
||||
bottomRightText="Call 1-800-DOMINOS for Support"
|
||||
bottomLeftText="© 2025 Professional Survey Services. All rights reserved."
|
||||
bottomRightText="Licensed & Insured | Serving the Region Since 2010"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user