Skip to content

Commit

Permalink
Add additional pets and fix wording on various pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mishmanners committed Oct 1, 2024
1 parent 67fd842 commit 17b82eb
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 5 deletions.
33 changes: 33 additions & 0 deletions PetSpotR.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2AF43CF1-D07F-4A07-9919-DE83FC73748F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "frontend", "frontend", "{7D685ED4-16E1-48F2-9722-0E62589F4C3A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PetSpotR", "src\frontend\PetSpotR\PetSpotR.csproj", "{38481BA9-B90B-4380-A31B-C0916BCFA009}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{38481BA9-B90B-4380-A31B-C0916BCFA009}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38481BA9-B90B-4380-A31B-C0916BCFA009}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38481BA9-B90B-4380-A31B-C0916BCFA009}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38481BA9-B90B-4380-A31B-C0916BCFA009}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{7D685ED4-16E1-48F2-9722-0E62589F4C3A} = {2AF43CF1-D07F-4A07-9919-DE83FC73748F}
{38481BA9-B90B-4380-A31B-C0916BCFA009} = {7D685ED4-16E1-48F2-9722-0E62589F4C3A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E984CBD7-93C0-4652-A2AA-35DE967BFC42}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion src/frontend/PetSpotR/Pages/Error.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="main">
<div class="content px-4">
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
<h2 class="text-danger">We're sorry, an error occurred while processing your request.</h2>

@if (Model.ShowRequestId)
{
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/PetSpotR/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img src="logo.svg" />
</div>

<h2>Reconnect with your lost pets using advanced AI</h2>
<h2>Helping owners reconnect with lost pets using advanced AI</h2>

<div class="buttons">
<a class="btn btn-primary btn-lg" role="button" href="/lost">I <b>lost</b> my pet</a>
Expand Down
3 changes: 3 additions & 0 deletions src/frontend/PetSpotR/Pages/LostPet.razor
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
<InputSelect id="type" @bind-Value="petModel.Type">
<option>Dog</option>
<option>Cat</option>
<option>Bird</option>
<option>Rabbit</option>
<option>Other</option>
</InputSelect>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/PetSpotR/Pages/SubmitFound.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
<img src="found.svg" />
</div>

<h2>Thank you for reporting your found pet!</h2>
<h2>Thank you for reporting a found pet!</h2>
<p>Our advanced AI model will attempt to find a match, and alert you and the owner if one is found.</p>
4 changes: 2 additions & 2 deletions src/frontend/PetSpotR/Pages/SubmitLost.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
<img src="lost.svg" />
</div>

<h2>Thank you for reporting your lost pet!</h2>
<p>Our advanced AI model is being fine-tuned. You will receive an email if your pet is found.</p>
<h2>Thank you for reporting your lost pet.</h2>
<p>We're using our advanced AI model to find a match. You will receive an email if your pet is found.</p>

0 comments on commit 17b82eb

Please sign in to comment.