41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
namespace ApplianceRepair
|
|
{
|
|
public static class Defaults
|
|
{
|
|
public static readonly HomePageModel DefaultHomePageContent = new()
|
|
{
|
|
BusinessName = "Appliance Pro",
|
|
FormattedPhoneNumber = "(555) 012-3456",
|
|
PhoneNumberCallLink = "tel:5550123456",
|
|
|
|
HeaderLine1 = "Expert Appliance Repair,",
|
|
HeaderLine2 = "Done Right Today.",
|
|
|
|
HeaderText = "Fast, affordable repairs for all major brands. Serving the Greater Metro Area.",
|
|
|
|
HeaderButton1Text = "Call for Same-Day Service",
|
|
HeaderButton1Link = "tel:5550123456",
|
|
HeaderButton2Text = "Book Online",
|
|
HeaderButton2Link = "#booking",
|
|
|
|
SecondaryHeaderText = "What We Fix",
|
|
|
|
ServicesCards =
|
|
[
|
|
new() { Header = "Refrigerators", Text = "Cooling issues, leaks, and compressor repairs." },
|
|
new() { Header = "Washers & Dryers", Text = "Fixing drum issues, drainage, and heating elements." },
|
|
new() { Header = "Ovens & Ranges", Text = "Electrical igniters, gas flow, and temperature control." }
|
|
],
|
|
|
|
TrustCards =
|
|
[
|
|
new() { Header = "90-Day Warranty", Text = "Quality parts and labor guaranteed." },
|
|
new() { Header = "Certified Techs", Text = "Licensed, bonded, and background-checked." },
|
|
new() { Header = "Fair Pricing", Text = "No hidden fees or diagnostic surprises." }
|
|
],
|
|
|
|
CopyrightText = $"© {DateTime.Now.Year} Appliance Pro. All rights reserved."
|
|
};
|
|
}
|
|
}
|