1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-11-22 08:04:31 +00:00
steffoweb/app/page.tsx

12 lines
206 B
TypeScript
Raw Permalink Normal View History

2023-12-19 04:07:44 +00:00
import {useRouter} from "next/navigation"
import React from "react"
2022-02-19 02:29:14 +00:00
2023-12-19 04:07:44 +00:00
export default function RootPage() {
2022-02-19 02:29:14 +00:00
return <>
2023-05-28 02:37:00 +00:00
<div className={"chapter-1"}>
2024-10-27 07:00:57 +00:00
Garasauto
2022-10-16 02:33:33 +00:00
</div>
2022-02-19 02:29:14 +00:00
</>
2024-09-02 10:06:03 +00:00
}