personal-security-checklist/web/src/components/furniture/hero.tsx
2024-02-03 12:07:50 +00:00

25 lines
885 B
TypeScript

import { component$ } from "@builder.io/qwik";
import Icon from "../core/icon";
export default component$(() => {
return (
<div class="hero bg-base-200 bg-opacity-25 mb-16">
<div class="hero-content text-center">
<div class="max-w-2xl flex flex-col place-items-center">
<p>The Ultimate</p>
<h1 class="text-5xl font-bold">Personal Security Checklist</h1>
<p class="subtitle pb-6">A guide to securing your digital life, and protecting your privacy online</p>
<Icon class="mb-4" icon="shield" width={120} height={120} />
<a href="https://github.com/lissy93/personal-security-checklist">
<button class="btn btn-primary btn-lg">
<Icon icon="github" width={20} height={20} />
View on GitHub
</button>
</a>
</div>
</div>
</div>
);
});