bunch o stuff
This commit is contained in:
41
Defaults.cs
41
Defaults.cs
@@ -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"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user