Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sample project landing page copy to be version-agnostic #1958

Merged
merged 2 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ The types of changes are:

## [Unreleased](https://github.com/ethyca/fides/compare/2.2.0...main)

### Changed

* Update sample project landing page copy to be version-agnostic [#1958](https://github.com/ethyca/fides/pull/1958)

## [2.2.0](https://github.com/ethyca/fides/compare/2.1.0...2.2.0)

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const Landing = () => (
<div className={css.content}>
<div className={css.headingContent}>
<Image src={landingImage} width={1860} alt="" className={css.box} />
<h1>Welcome to Fides 2.0</h1>
<p className={css.subhead}>Let's run our first privacy request in under 5 minutes!</p>
<h1>Welcome to Fides!</h1>
<p className={css.subhead}>Let's run our first privacy request in under 5 minutes</p>
</div>
<main>
<h2>What's in the box?</h2>
Expand Down Expand Up @@ -86,4 +86,4 @@ const Landing = () => (
</div>
);

export default Landing;
export default Landing;
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const LandingPage = () => {
return (
<>
<Head>
<title>Welcome to Fides 2.0</title>
<title>Welcome to Fides</title>
<meta name="description" content="Sample Project used within Fides (github.com/ethyca/fides)" />
<link rel="icon" href="/favicon.ico" />
<meta charSet="utf-8" />
Expand Down