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

Some modifications to links and title #2

Merged
merged 1 commit into from
Jun 6, 2024
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
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