2024-05-20 18:26:59 +00:00
|
|
|
<script>
|
|
|
|
import VendorMarquee from '$lib/Landing/VendorMarquee.svelte';
|
2024-05-20 20:55:23 +00:00
|
|
|
import VendorCarousel from '../lib/Landing/VendorCarousel.svelte';
|
|
|
|
import { Carousel, Heading, Mark } from 'flowbite-svelte';
|
|
|
|
import rack from '$lib/images/rack.webp';
|
|
|
|
import portfolio from '$lib/images/portfolio.png';
|
|
|
|
import localWeather from '$lib/images/localWeather.png';
|
2024-05-20 22:19:00 +00:00
|
|
|
import hero from '$lib/images/hero.webp';
|
2024-05-20 20:55:23 +00:00
|
|
|
|
|
|
|
const images = [
|
|
|
|
{
|
|
|
|
title: '/projects/nextjs',
|
|
|
|
image: portfolio
|
|
|
|
}
|
|
|
|
];
|
2024-05-20 18:26:59 +00:00
|
|
|
</script>
|
|
|
|
|
2024-05-20 20:55:23 +00:00
|
|
|
<div class="text-center text-xl">
|
2024-05-20 22:19:00 +00:00
|
|
|
<div class="flex my-4 gap-4">
|
|
|
|
<Heading tag="h1" class="md:text-right">father by day <Mark>developer</Mark> by night</Heading>
|
|
|
|
<img
|
|
|
|
src={hero}
|
|
|
|
alt=""
|
|
|
|
class="hidden md:block rounded-xl max-h-36 w-auto shadow-inner border border-slate-700"
|
|
|
|
/>
|
|
|
|
</div>
|
2024-05-20 20:55:23 +00:00
|
|
|
<h2 class="py-2">
|
|
|
|
welcome to my space. For now it is used to document my learnings and share my projects. It might
|
|
|
|
expand over time.
|
|
|
|
</h2>
|
|
|
|
<p class="py-2">
|
|
|
|
I like to explore many different technologies and frameworks mostly surrounding web development
|
2024-05-20 21:59:07 +00:00
|
|
|
and infrastructure.
|
2024-05-18 20:52:43 +00:00
|
|
|
</p>
|
2024-05-20 20:55:23 +00:00
|
|
|
<div class="hidden md:block py-2">
|
|
|
|
<VendorMarquee />
|
|
|
|
</div>
|
|
|
|
<div class="md:hidden py-2">
|
|
|
|
<VendorCarousel />
|
|
|
|
</div>
|
|
|
|
<h2 class="py-2">
|
|
|
|
You can see some of my web dev projects and a small write-up on my homelab in the projects
|
|
|
|
section.
|
|
|
|
</h2>
|
2024-05-18 20:52:43 +00:00
|
|
|
</div>
|