Introduced a new Razor Components-based web application, `EnvelopeGenerator.ReceiverUI`, to the solution. This includes: - Added `EnvelopeGenerator.ReceiverUI` project to `EnvelopeGenerator.sln` with Debug and Release configurations. - Created `EnvelopeGenerator.ReceiverUI.csproj` targeting `.NET 8.0` with nullable and implicit usings enabled. - Added Razor components (`App.razor`, `Routes.razor`, `MainLayout.razor`, `NavMenu.razor`, `Counter.razor`, `Error.razor`, `Home.razor`, `Weather.razor`) for layout, navigation, and pages. - Included styles (`MainLayout.razor.css`, `NavMenu.razor.css`, `app.css`) and assets (`favicon.png`, `bootstrap.min.css`). - Configured logging and allowed hosts in `appsettings.json` and `appsettings.Development.json`. - Added `Program.cs` to configure and run the application. - Added `launchSettings.json` for development and debugging profiles. These changes enable a modern, interactive web interface with Bootstrap styling and development-friendly configurations.
21 lines
539 B
Plaintext
21 lines
539 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<base href="/" />
|
|
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="app.css" />
|
|
<link rel="stylesheet" href="EnvelopeGenerator.ReceiverUI.styles.css" />
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<HeadOutlet />
|
|
</head>
|
|
|
|
<body>
|
|
<Routes />
|
|
<script src="_framework/blazor.web.js"></script>
|
|
</body>
|
|
|
|
</html>
|