feat: init collections index + delete

This commit is contained in:
swve 2022-09-24 20:06:05 +02:00
parent c5bb590b2d
commit 924656ce13
14 changed files with 167 additions and 22 deletions

View file

@ -1,11 +1,13 @@
import type { NextPage } from "next";
import { Title } from "../components/ui/styles/title";
import Layout from "../components/ui/layout";
import { Header } from "../components/ui/header";
const Home: NextPage = () => {
return (
<div>
<Layout title="Index">
<Header></Header>
<Title>Home</Title>
</Layout>
</div>