Files

38 lines
1.8 KiB
C#
Raw Permalink Normal View History

2026-02-03 16:55:37 -06:00
namespace ApplianceRepair
{
public static class Defaults
{
2026-04-25 13:14:08 -05:00
public static readonly HomePageRecord DefaultHomePageContent = new()
2026-02-03 16:55:37 -06:00
{
HeaderLine1 = "Expert Appliance Repair,",
HeaderLine2 = "Done Right Today.",
HeaderText = "Fast, affordable repairs for all major brands. Serving the Greater Metro Area.",
2026-04-25 13:14:08 -05:00
CallHeaderText = "Call for Same-Day Service",
BookHeaderText = "Book Online",
2026-02-03 16:55:37 -06:00
SecondaryHeaderText = "What We Fix",
2026-04-25 13:14:08 -05:00
};
2026-02-03 16:55:37 -06:00
2026-04-25 13:14:08 -05:00
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" }
];
2026-02-03 16:55:37 -06:00
2026-04-25 13:14:08 -05:00
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" }
];
2026-02-03 16:55:37 -06:00
2026-04-25 13:14:08 -05:00
public static readonly BusinessConfigRecord DefaultBusinessConfig = new()
{
Name = "Appliance Pro",
PhoneNumber = "5550123456",
SupportEmail = "appliance@pro.net"
2026-02-03 16:55:37 -06:00
};
}
}