bunch o stuff

This commit is contained in:
2026-04-25 13:14:08 -05:00
parent fc7db1fedd
commit a1fddb3513
18 changed files with 1037 additions and 190 deletions

View File

@@ -2,39 +2,36 @@
{
public static class Defaults
{
public static readonly HomePageModel DefaultHomePageContent = new()
public static readonly HomePageRecord 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",
CallHeaderText = "Call for Same-Day Service",
BookHeaderText = "Book Online",
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." }
],
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" }
];
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." }
],
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" }
];
CopyrightText = $"© {DateTime.Now.Year} Appliance Pro. All rights reserved."
public static readonly BusinessConfigRecord DefaultBusinessConfig = new()
{
Name = "Appliance Pro",
PhoneNumber = "5550123456",
SupportEmail = "appliance@pro.net"
};
}
}