Hei, jeg heter Søren 👋

I'm a state-certified business economist with over 10 year experience in the logistics industry. Besides I also work as a full-stack developer and create "awful" code like the one below...

A photo of me
1import { Metadata } from "next";
2import { H2 } from "@/components/ui/H2";
3import { Bot } from "lucide-react";
4  
5export const metadata: Metadata = {
6    title: "Home",
7  };
8
9export default function Home() {
10 return (
11  <section className="space-y-3 text-center">
12   <H2>
13    Have a burning desire to uncover the secrets of my life?
14   </H2>
15    <p>
16     Unlock the mysteries of my existence by interrogating
17     the all-knowing chatbot!
18    
19     Just click that tiny <Bot className="inline pb-1" />
20     icon in the bottom right corner to summon the AI oracle.
21    
22     Need to know my favorite pizza topping or the
23     embarrassing story from last year&apos;s office party
24    
25     The bot&apos;s got you covered. It&apos;s like having
26     your own personal detective, but with less
27     trench coat and more digital savvy.<br/>
28    
29     Go ahead, ask away!
30    </p>
31  </section>
32);
33}