Skip to content

Commit

Permalink
Merge pull request CodeForPhilly#213 from CodeForPhilly/lebovits-issu…
Browse files Browse the repository at this point in the history
…160-add-footer

cleanup request removal and legal disclaimer pages
  • Loading branch information
nlebovits authored Jan 18, 2024
2 parents 2f9553c + 7170d9f commit 5ff2f73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/app/components/LegalDisclaimerPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { get } from "http";

export default function GetAccessPage() {
return (
<div className="container mx-auto pt-20 h-screen">
<div className="flex flex-col min-h-screen">
<div className="container mx-auto pt-20">
<h1 className="text-4xl font-bold mb-6">Legal Disclaimer</h1>

<h2 className="text-2xl font-bold mt-8">Acceptance of Terms and Conditions of Use</h2>
Expand Down Expand Up @@ -41,5 +42,6 @@ export default function GetAccessPage() {
</p>

</div>
</div>
);
}
4 changes: 3 additions & 1 deletion src/app/components/RequestRemovalPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { get } from "http";

export default function GetAccessPage() {
return (
<div className="container mx-auto pt-20 h-screen">
<div className="flex flex-col min-h-screen">
<div className="container mx-auto pt-20">
<h1 className="text-4xl font-bold mb-6">Request to Remove a Property Listing</h1>

<p>
Expand All @@ -18,5 +19,6 @@ export default function GetAccessPage() {
</p>

</div>
</div>
);
}

0 comments on commit 5ff2f73

Please sign in to comment.