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 {
              Id = Guid.NewGuid(),
              Image = new ImageModel { Src = "https://dummyimage.com/40x40/ced4da/6c757d", Alt = "..." },
              FullName = "Admin",
              Position = "CEO, MAKS-IT"
            }
          }
        }
      },
      FeaturedBlogsSection = new FeaturedBologsSectionModel {
        Title = "From our blog"
      },
      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 shopItem = new ShopItemPageModel {
      ProductSection = new ProductSectionModel {
        AvailableQuantity = "Available Qty.",
        AddToCart = "Add to cart"
      },
      RelatedProductsSection = new RelatedProductsSectionModel {
        Title = "Related products"
      }
    };
    var blogCatalogPage = new BlogCatalogPageModel {
      TitleSection = new TitleSectionModel {
        Title = "Welcome to Blog Home!",
        Text = "A Bootstrap 5 starter layout for your next blog homepage"
      },
      FeaturedBlogSection = new FeaturedBlogSectionModel {
        ReadTime = "{date} Time to read: {readTime} min"
      }
    };
    var blogItem = new BlogItemPageModel {
      TitleSection = new BlogTitleSectionModel {
        PostedOnBy = "Posted on {date} by {nickName}"
      },
      CommentsSection = new CommentsSectionModel {
        LeaveComment = "Join the discussion and leave a comment!"
      }
    };
    return Ok(new GetContentResponseModel {
      SiteName = "MAKS-IT",
      Routes = routes,
      AdminRoutes = adminRoutes,
      ServiceRoutes = serviceRoutes,
      TopMenu = topMenu,
      SideMenu = sideMenu,
      
      HomePage = homePage,
      ShopCatalog = shopCatalogPage,
      ShopItem = shopItem,
      BlogCatalog = blogCatalogPage,
      Blogitem = blogItem
    });
  }
}