feat: add empty qwik-city frontend

This commit is contained in:
nobody 2025-10-30 17:55:43 -07:00
commit 9e383ee26e
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
22 changed files with 9661 additions and 0 deletions

View file

@ -0,0 +1,25 @@
import { component$ } from "@builder.io/qwik";
import type { DocumentHead } from "@builder.io/qwik-city";
export default component$(() => {
return (
<>
<h1>Hi 👋</h1>
<div>
Can't wait to see what you build with qwik!
<br />
Happy coding.
</div>
</>
);
});
export const head: DocumentHead = {
title: "Welcome to Qwik",
meta: [
{
name: "description",
content: "Qwik site description",
},
],
};