Skip to content

Commit

Permalink
Tweak alternatives landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
pimterry committed Dec 7, 2023
1 parent 3cbd139 commit 9a6d761
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export class Layout extends React.Component {
<FooterMenu>
<Link to='/terms-of-service/'>Terms of Service</Link>
<Link to='/privacy-policy/'>Privacy Policy</Link>
<Link to='/alternatives/'>Comparisons</Link>
<Link to='/alternatives/'>Alternatives</Link>
</FooterMenu>
<FooterOpenSource>
<strong>100% open-source</strong>
Expand Down
10 changes: 5 additions & 5 deletions src/pages/alternatives.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const Description = styled(SubHeading.withComponent("p"))`
`}
`;

const Comparisons = styled.ul`
const Alternatives = styled.ul`
${p => p.theme.fontSizeNearlyHeading};
line-height: 1.5;
max-width: 760px;
Expand All @@ -106,7 +106,7 @@ export const Comparison = styled((p) =>
}
`;

export default class CharlesAlternativePage extends React.Component {
export default class AlternativePage extends React.Component {
constructor(props) {
super(props);
this.state = { updateModalOpen: false };
Expand All @@ -133,7 +133,7 @@ export default class CharlesAlternativePage extends React.Component {
<Description>
Let's look at the value of HTTP Toolkit as a:
</Description>
<Comparisons>
<Alternatives>
<Comparison>
<Link to="/fiddler-alternative/">Fiddler alternative</Link>
</Comparison>
Expand All @@ -143,9 +143,9 @@ export default class CharlesAlternativePage extends React.Component {
<Comparison>
<Link to="/chrome-devtools-alternative/">Chrome Devtools alternative</Link>
</Comparison>
</Comparisons>
</Alternatives>
<Description>
Is your favorite tool not in the list? Want to know how HTTP Toolkit compares to other options? <a href="https://github.com/httptoolkit/httptoolkit/issues/new/choose">
Is your favorite alternative tool not in the list? Want to know how HTTP Toolkit compares to other options? <a href="https://github.com/httptoolkit/httptoolkit/issues/new/choose">
Send in your feedback
</a> or submit a PR for <a href="https://github.com/httptoolkit/httptoolkit-website/tree/main/src/pages">
this site
Expand Down
2 changes: 1 addition & 1 deletion src/pages/chrome-devtools-alternative.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const UniqueFeature = styled((p) =>
}
`;

export default class CharlesAlternativePage extends React.Component {
export default class ChromeDevToolsAlternativePage extends React.Component {
constructor(props) {
super(props);
this.state = { updateModalOpen: false };
Expand Down

0 comments on commit 9a6d761

Please sign in to comment.