All blueprints are RHD (right-hand drive)
Modules are 42x42 (big electric poles overlap on neighboring modules)
Included blueprint books:
- MRS - 2 Lane - RHD - 20 blueprints
- MRS - 2 Lane Single - RHD - 34 blueprints
- MRS - 4 Lane - RHD - 25 blueprints
| // page.tsx | |
| const slug = 'home' | |
| export default async function HomePage(_: PageProps<'/'>) { | |
| return ( | |
| <PageLayout breadcrumbs={<PageBreadcrumbs slug={slug} />} footer={<Footnotes />}> | |
| <ErrorBoundary FallbackComponent={ErrorFallback}> | |
| <HeroSlice slug={slug} /> | |
| <SliceRenderer slug={slug} /> |
| "use client"; | |
| import { useRouter } from "next/navigation"; | |
| import type { ReactNode } from "react"; | |
| import { useCallback, useEffect, useState } from "react"; | |
| interface ProximityPrefetchProps { | |
| children: ReactNode; | |
| threshold?: number; | |
| predictionInterval?: number; |
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!