mirror of
https://github.com/ershisan99/vacancies-trends-front.git
synced 2025-12-16 12:34:06 +00:00
42 lines
950 B
TypeScript
42 lines
950 B
TypeScript
import type { MetaFunction } from "@remix-run/node";
|
|
|
|
export const meta: MetaFunction = () => {
|
|
return [
|
|
{ title: "New Remix App" },
|
|
{ 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>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
target="_blank"
|
|
href="https://remix.run/start/quickstart"
|
|
rel="noreferrer"
|
|
>
|
|
5m Quick Start
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
target="_blank"
|
|
href="https://remix.run/start/tutorial"
|
|
rel="noreferrer"
|
|
>
|
|
30m Tutorial
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a target="_blank" href="https://remix.run/docs" rel="noreferrer">
|
|
Remix Docs
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|