docs(websitedoc): added new website

This commit is contained in:
Leifer Mendez
2022-11-28 12:55:30 +01:00
parent 1856bd5022
commit 46c4ec7ab9
54 changed files with 7651 additions and 220 deletions

View File

@@ -0,0 +1,15 @@
import { component$, Slot } from '@builder.io/qwik';
import Footer from '~/components/footer/footer';
import Header from '~/components/header/header';
export default component$(() => {
return (
<>
<Header />
<main>
<Slot />
</main>
<Footer />
</>
);
});