Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: tweak link
  • Loading branch information
hi-ogawa committed Apr 7, 2024
commit f7b9b4fe6998255fb06ac961dbaeeb26fa5ef97e
9 changes: 8 additions & 1 deletion src/routes/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@ export default async function Layout(props: LayoutProps) {
</head>
<body>
<div id="sidebar">
<h1>
<h1 style={{ display: "flex" }}>
<Link href="/">Remix Contacts</Link>
<span style={{ flex: "1 0 0" }}></span>
<a
href="https://github.com/hi-ogawa/react-server-demo-remix-tutorial"
target="_blank"
>
Code
</a>
</h1>
<div>
<LinkForm action="/" id="search-form" role="search" revalidate>
Expand Down
11 changes: 5 additions & 6 deletions src/routes/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@ export default function Page() {
return (
<p id="index-page">
This is a demo for{" "}
<a href="https://remix.run" target="_blank">
Remix
</a>
,
<br />
which is ported to{" "}
<a
href="https://github.com/hi-ogawa/vite-plugins/tree/main/packages/react-server"
target="_blank"
>
@hiogawa/react-server
</a>
<br />
ported from{" "}
<a href="https://remix.run/docs/en/main/start/tutorial" target="_blank">
Remix Tutorial
</a>
.
</p>
);
Expand Down