JeffQuit / MERN---Project-3---Mobile-Vehicle-Detail-Application

Project 3 for UCLA Full Stack Development Bootcamp: Developing website for local mobile vehicle detailing service
MIT License
0 stars 2 forks source link

Pricing Tile #17

Open JeffQuit opened 4 years ago

JeffQuit commented 4 years ago

Create pricing tile with 6 Grid units for the pricing information. Dropdown box on click for details on package

JeffQuit commented 4 years ago

export const ServicePackages= [

{

    id: 0,
    packageCat: "Complete Package",
    packageName: "All in One Service",
    packageDetailTitle: "Package Includes:",
    packageDetailBullets: ["Hand Wash & Dry", "Clean Wheels, Tires, Fenders, Gas Cap", "Clay exterior surfaces", "Polish paintwork", "Apply wax/sealant", "Wipe down door jambs", "Clean exterior glass and windows", "Dress tires and fenders", "Dress exterior trim", "Clean and polish emblems", "Polish wheels"],
    packagePriceTitle: "Prices:",
    packagePriceS: "Small Vehicle:  $140+",
    packagePriceM: "Medium Vehicles: $170+",
    packagePriceL: "Large Vehicles: $200 - $240",
    packagePriceXL: "Extra Large Vehicles: $300+",
    packageEstimatedTimeTitle: "Est. Time:",
    packageEstimatedTimeS: "Small Vehicle: 3.5 Hours",
    packageEstimatedTimeM: "Medium Vehicle: 4+ Hours",
    packageEstimatedTimeL: "Large Vehicle: 6+ Hours",
    packageEstimatedTimeXL: "Extra Large Vehicle: 8+ Hours",

},

{

    id: 1,
    packageCat: "Detailing Services",
    packageName: "Detail Wash & Wax",
    packageDetailTitle: "Package Includes:",
    packageDetailBullets: ["Hand Wash & Dry", "Clay exterior surfaces", "Apply Wax/Sealant", "Wipe Down Door Jambs", "Clean Exterior Glass & Windows", "Dress Tires & Fenders", "Dress Exterior Trim"],
    packagePriceTitle: "Prices:",
    packagePriceS: "Small Vehicle:  $75 - $80",
    packagePriceM: "Medium Vehicles: $85 - $90",
    packagePriceL: "Large Vehicles: $95 - 100",
    packagePriceXL: "Extra Large Vehicles: $110+",
    packageEstimatedTimeTitle: "Est. Time:",
    packageEstimatedTimeS: "Small Vehicle: 1.5+ Hours",
    packageEstimatedTimeM: "Medium Vehicle: 2.5+ Hours",
    packageEstimatedTimeL: "Large Vehicle: 4.5+ Hours",
    packageEstimatedTimeXL: "Extra Large Vehicle: 6+ Hours",

},
{

    id: 2,
    packageCat: "Detailing Services",
    packageName: "Express Detail",
    packageDetailTitle: "Package Includes:",
    packageDetailBullets: ["Hand Wash & Dry", "Clean Wheels, Tires, Fenders, Gas Cap", "Wipe Down Door Jambs", "Clean Exterior Glass & Windows", "Dress Tires"],
    packagePriceTitle: "Prices:",
    packagePriceS: "Small Vehicle:  $35",
    packagePriceM: "Medium Vehicles: $45",
    packagePriceL: "Large Vehicles: $55",
    packagePriceXL: "Extra Large Vehicles: $65",
    packageEstimatedTimeTitle: "Est. Time:",
    packageEstimatedTimeS: "Small Vehicle: 1 Hour",
    packageEstimatedTimeM: "Medium Vehicle: 1.5 Hours",
    packageEstimatedTimeL: "Large Vehicle: 2 Hours",
    packageEstimatedTimeXL: "Extra Large Vehicle: 2.5+ Hours",

},
{

    id: 3,
    packageCat: "Cleaning Services",
    packageName: "Deep Interior Cleaning",
    packageDetailTitle: "Package Includes:",
    packageDetailBullets: ["Thorough Vacuum", "Cleaning Interior Glass & Windows", "Wiping Down Dust Of All Surfaces", "Steam Cleaning & Shampoo ", "Cleaning & Conditioning Leather & Trim"],
    packagePriceTitle: "Prices:",
    packagePriceS: "Small Vehicle:  $35",
    packagePriceM: "Medium Vehicles: $45",
    packagePriceL: "Large Vehicles: $55",
    packagePriceXL: "Extra Large Vehicles: $65",
    packageEstimatedTimeTitle: "Est. Time:",
    packageEstimatedTimeS: "Small Vehicle: 1 Hour",
    packageEstimatedTimeM: "Medium Vehicle: 1.5 Hours",
    packageEstimatedTimeL: "Large Vehicle: 2 Hours",
    packageEstimatedTimeXL: "Extra Large Vehicle: 2.5+ Hours",

},
{

    id: 4,
    packageCat: "Cleaning Services",
    packageName: "Basic Interior Cleaning",
    packageDetailTitle: "Package Includes:",
    packageDetailBullets: [ "Thorough Vacuum", "Wipe Down Door Jams, Cup Holders, and Center Console", "Cleaning Interior Glass & Windows"],
    packagePriceTitle: "Prices:",
    packagePriceS: "Small Vehicle:  $15",
    packagePriceM: "Medium Vehicles: $20",
    packagePriceL: "Large Vehicles: $30",
    packagePriceXL: "Extra Large Vehicles: $45+",
    packageEstimatedTimeTitle: "Est. Time:",
    packageEstimatedTimeS: "Small Vehicle: 20 Minutes",
    packageEstimatedTimeM: "Medium Vehicle: 30 Minutes",
    packageEstimatedTimeL: "Large Vehicle: 1 Hour",
    packageEstimatedTimeXL: "Extra Large Vehicle: 1.5+ Hours",

},
{

    id: 5,
    packageCat: "Cleaning Services",
    packageName: "Engine Cleaning",
    packageDetailTitle: "Package Includes:",
    packageDetailBullets: ["Cover Sensitive Areas", "Softly Rinse Engine Bay", "Clean & Degrease All Surfaces", "Dressing All Plastic & Vinyl"],
    packagePriceTitle: "Prices:",
    packagePriceS: "Small Vehicle:  $20+",
    packagePriceM: "Medium Vehicles: $35+",
    packagePriceL: "Large Vehicles: $50+",
    packagePriceXL: "Extra Large Vehicles: $70+",
    packageEstimatedTimeTitle: "Est. Time:",
    packageEstimatedTimeS: "Small Vehicle: 30 Minutes",
    packageEstimatedTimeM: "Medium Vehicle: 1 Hour",
    packageEstimatedTimeL: "Large Vehicle: 1.5 Hours",
    packageEstimatedTimeXL: "Extra Large Vehicle: 2+ Hours",

},

]