Files
ApplianceRepair/Defaults.cs
2026-04-25 13:14:08 -05:00

38 lines
1.8 KiB
C#

namespace ApplianceRepair
{
public static class Defaults
{
public static readonly HomePageRecord DefaultHomePageContent = new()
{
HeaderLine1 = "Expert Appliance Repair,",
HeaderLine2 = "Done Right Today.",
HeaderText = "Fast, affordable repairs for all major brands. Serving the Greater Metro Area.",
CallHeaderText = "Call for Same-Day Service",
BookHeaderText = "Book Online",
SecondaryHeaderText = "What We Fix",
};
public static readonly List<ContentCardRecord> DefaultHomePageServiceCards = [
new() { Header = "Refrigerators", Text = "Cooling issues, leaks, and compressor repairs.", BelongsToPage = "Home", Group = "Services" },
new() { Header = "Washers & Dryers", Text = "Fixing drum issues, drainage, and heating elements.", BelongsToPage = "Home", Group = "Services" },
new() { Header = "Ovens & Ranges", Text = "Electrical igniters, gas flow, and temperature control.", BelongsToPage = "Home", Group = "Services" }
];
public static readonly List<ContentCardRecord> DefaultHomePageTrustCards = [
new() { Header = "90-Day Warranty", Text = "Quality parts and labor guaranteed.", BelongsToPage = "Home", Group = "Trust" },
new() { Header = "Certified Techs", Text = "Licensed, bonded, and background-checked.", BelongsToPage = "Home", Group = "Trust" },
new() { Header = "Fair Pricing", Text = "No hidden fees or diagnostic surprises.", BelongsToPage = "Home", Group = "Trust" }
];
public static readonly BusinessConfigRecord DefaultBusinessConfig = new()
{
Name = "Appliance Pro",
PhoneNumber = "5550123456",
SupportEmail = "appliance@pro.net"
};
}
}