Updated
This commit is contained in:
parent
4184942584
commit
afb5f3a287
66 changed files with 550 additions and 57 deletions
19
frontend/src/routes/[...404].tsx
Normal file
19
frontend/src/routes/[...404].tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { Title } from "@solidjs/meta";
|
||||
import { HttpStatusCode } from "@solidjs/start";
|
||||
|
||||
export default function NotFound() {
|
||||
return (
|
||||
<main>
|
||||
<Title>Not Found</Title>
|
||||
<HttpStatusCode code={404} />
|
||||
<h1>Page Not Found</h1>
|
||||
<p>
|
||||
Visit{" "}
|
||||
<a href="https://start.solidjs.com" target="_blank">
|
||||
start.solidjs.com
|
||||
</a>{" "}
|
||||
to learn how to build SolidStart apps.
|
||||
</p>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
10
frontend/src/routes/about.tsx
Normal file
10
frontend/src/routes/about.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { Title } from "@solidjs/meta";
|
||||
|
||||
export default function About() {
|
||||
return (
|
||||
<main>
|
||||
<Title>About</Title>
|
||||
<h1>About</h1>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
4
frontend/src/routes/index.sass
Normal file
4
frontend/src/routes/index.sass
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
@use '../styles/variables' as vars
|
||||
|
||||
.h1
|
||||
color: vars.$accentColor
|
||||
15
frontend/src/routes/index.tsx
Normal file
15
frontend/src/routes/index.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import './index.sass'
|
||||
import Counter from '~/components/Counter/Counter'
|
||||
import { Page, Column } from '~/@dasig'
|
||||
|
||||
export default () => {
|
||||
return (
|
||||
<Page title="Dasig - Index">
|
||||
<Column>
|
||||
<h1>DASIG</h1>
|
||||
<h4>A next level development for pure speed</h4>
|
||||
<Counter />
|
||||
</Column>
|
||||
</Page>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue