import RenderWithoutJS from "@/components/RenderWithoutJS"; import Sidebar from "@/components/Sidebar"; import index from "@/styles/Index.module.sass" import Lanyard from "@/components/Lanyard" import Head from "next/head" import Link from "@/components/Link"; const Hello = ["Ahoy!", "Ahoy there!", "Hey there!", "Howdy howdy!", "Howdy, friend!", "Howdy!", "Hey!", "Hey there!", "Hi!", "Hello!", "Hello there!", "Hi there!"]; function randomHello() { return Hello[Math.floor(Math.random() * Hello.length)]; } const IndexPage = () => { return (
lio

{randomHello()}

welcome to my corner of the internet.
i'm lio, 21 y/o, from Germany. they/them pronouns.
software dev and ui designer

If you want to see my professional work, you can visit

); }; export default IndexPage