Welcome to your new single-page application, built with:
create-react-app runs in the background automatically, so your client-side resources are dynamically built on demand and the page refreshes when you modify any file."
          },
          new FeatureModel {
            Icon = "terminal",
            Title = "Efficient production builds",
            Text = "In production mode, development-time features are disabled, and your dotnet publish configuration produces minified, efficiently bundled JavaScript files."
          }
        }
      },
      TestimonialsSection = new TestimonialsSectionModel {
        Items = new ListClientApp subdirectory is a standard React application based on the create-react-app template. If you open a command prompt in that directory, you can run yarn commands such as yarn test or yarn install.",
            Reviewer = new ReviewerModel {
              Image = new ImageModel { Src = "https://dummyimage.com/40x40/ced4da/6c757d", Alt = "..." },
              FullName = "Admin",
              Position = "CEO, MAKS-IT"
            }
          }
        }
      },
      FeaturedBlogsSection = new FeaturedBologsSectionModel {
        Title = "From our blog",
        Items = blogItems
      },
      CallToActionSection = new CallToActionSectionModel {
        Title = "New products, delivered to you.",
        Text = "Sign up for our newsletter for the latest updates.",
        PrivacyDisclaimer = "We care about privacy, and will never share your data.",
        Email = new FormItemModel {
          PlaceHolder = "Email address...",
          Title = "Sign up"
        }
      }
    };
    var shopCatalogPage = new ShopCatalogPageModel {
      TitleSection = new TitleSectionModel {
        Title = "Shop in style",
        Text = "With this shop hompeage template"
      }
    };
    var blogCatalogPage = new BlogCatalogPageModel {
      TitleSection = new TitleSectionModel {
        Title = "Welcome to Blog Home!",
        Text = "A Bootstrap 5 starter layout for your next blog homepage"
      }
    };
    return Ok(new GetStaticContentResponseModel {
      SiteName = "MAKS-IT",
      Routes = routes,
      AdminRoutes = adminRoutes,
      ServiceRoutes = serviceRoutes,
      TopMenu = topMenu,
      SideMenu = sideMenu,
      HomePage = homePage,
      ShopCatalog = shopCatalogPage,
      BlogCatalog = blogCatalogPage
    });
  }
}