Skip to content

Commit

Permalink
Merge pull request #2 from forge42dev/link-modifications
Browse files Browse the repository at this point in the history
Some modifications to links and title
  • Loading branch information
thomasfr authored Jun 6, 2024
2 parents a232feb + 938f0a0 commit 5faa733
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 171 deletions.
1 change: 1 addition & 0 deletions .github/workflows/fly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:

environment:
name: production
url: https://f42demo-my-remix-app.fly.dev/

steps:
- uses: actions/checkout@v4
Expand Down
18 changes: 0 additions & 18 deletions app/entry.client.tsx

This file was deleted.

140 changes: 0 additions & 140 deletions app/entry.server.tsx

This file was deleted.

17 changes: 4 additions & 13 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,23 @@ import type { MetaFunction } from "@remix-run/node";

export const meta: MetaFunction = () => {
return [
{ title: "New Remix App" },
{ title: "New Remix App on Fly.io" },
{ name: "description", content: "Welcome to Remix!" },
];
};

export default function Index() {
return (
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}>
<h1>Welcome to Remix</h1>
<h1>Welcome to Remix on Fly.io</h1>
<ul>
<li>
<a
target="_blank"
href="https://remix.run/tutorials/blog"
href="https://fly.io/docs/js/frameworks/remix/"
rel="noreferrer"
>
15m Quickstart Blog Tutorial
</a>
</li>
<li>
<a
target="_blank"
href="https://remix.run/tutorials/jokes"
rel="noreferrer"
>
Deep Dive Jokes App Tutorial
Run a Remix App on Fly.io
</a>
</li>
<li>
Expand Down

0 comments on commit 5faa733

Please sign in to comment.