mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2025-02-10 19:14:47 +00:00
![Dessalines](/assets/img/avatar_default.png)
* Initial inferno commit. * Fixing husky * Fixing submodule * Removing extra dockerfile lines * Some cleanup, refactoring into components * Testing out a drone build. * Removing lemmy-docs * Removing gitmodules * Trying to add again * Don't init. * check folder. * check folder 2. * Removing lemmy-docs again * Adding lemmy-docs again * Adding submodule init. * Removing ls. * Trying a first docker deploy. * Removing arm64 build. * Upgrading deps, fixing links.
34 lines
664 B
TypeScript
34 lines
664 B
TypeScript
import { IRouteProps } from "inferno-router/dist/Route";
|
|
import { Main } from "./components/main";
|
|
import { Apps } from "./components/apps";
|
|
import { Join } from "./components/join";
|
|
import { Contact } from "./components/contact";
|
|
import { Sponsors } from "./components/sponsors";
|
|
|
|
export const routes: IRouteProps[] = [
|
|
{
|
|
path: `/`,
|
|
exact: true,
|
|
component: Main,
|
|
},
|
|
{
|
|
path: `/apps`,
|
|
exact: true,
|
|
component: Apps,
|
|
},
|
|
{
|
|
path: `/join`,
|
|
exact: true,
|
|
component: Join,
|
|
},
|
|
{
|
|
path: `/contact`,
|
|
exact: true,
|
|
component: Contact,
|
|
},
|
|
{
|
|
path: `/sponsors`,
|
|
exact: true,
|
|
component: Sponsors,
|
|
},
|
|
];
|