initial commit

This commit is contained in:
2026-02-03 16:55:37 -06:00
commit 5267701e32
30 changed files with 1103 additions and 0 deletions

40
Defaults.cs Normal file
View File

@@ -0,0 +1,40 @@
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."
};
}
}