feat: website (#8043)

This commit is contained in:
Noel
2022-06-08 19:13:31 +02:00
committed by GitHub
parent 5259639c2c
commit 127931d1df
37 changed files with 6535 additions and 149 deletions

View File

@@ -0,0 +1,25 @@
import type { MetaFunction } from '@remix-run/node';
import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration } from '@remix-run/react';
export const meta: MetaFunction = () => ({
charset: 'utf-8',
title: 'discord.js',
viewport: 'width=device-width,initial-scale=1',
});
export default function App() {
return (
<html lang="en">
<head>
<Meta />
<Links />
</head>
<body>
<Outlet />
<ScrollRestoration />
<Scripts />
<LiveReload />
</body>
</html>
);
}