small edits
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m3s

This commit is contained in:
vorpax
2026-01-02 20:46:10 +01:00
parent 7580de25b6
commit a72710c863
2 changed files with 26 additions and 15 deletions

View File

@@ -3,7 +3,7 @@ const SITE_URL = import.meta.env.PUBLIC_SITE_URL || 'https://vorpax.dev';
export const siteConfig = {
title: "Alexandre | Vorpax",
author: "Alexandre",
author: "vorpax",
url: SITE_URL,
mail: "contact at vorpax dot dev",
resume: "/assets/resume.pdf",
@@ -12,14 +12,14 @@ export const siteConfig = {
medium: "referral",
campaign: "navigation",
},
meta:{
meta: {
title: "Alexandre | Business x Engineering x Infrastructure",
description: "M1 HEC Paris | President HEC IA | Freelance Fullstack Developer | Infrastructure Enthusiast",
keywords: "portfolio, developer, infrastructure, homelab, HEC Paris, engineering, fullstack",
image: `${SITE_URL}/og.jpg`,
twitterHandle: "",
},
social:{
social: {
github: "https://github.com/vorpax",
linkedin: "https://www.linkedin.com/in/alexandre-houard-686960279/",
},

View File

@@ -9,15 +9,19 @@ import Explore from "@/components/sections/Explore.astro";
---
<Layout
title="Alexandre | Vorpax"
description="M1 HEC Paris | President HEC IA | Freelance Fullstack Developer | Infrastructure Enthusiast"
keywords="Alexandre, Portfolio, Developer, Infrastructure, Homelab, HEC Paris, Engineering"
title="Alexandre | Vorpax"
description="M1 HEC Paris | President HEC IA | Freelance Fullstack Developer | Infrastructure Enthusiast"
keywords="Alexandre H, Portfolio, Developer, Infrastructure, Homelab, HEC Paris, Engineering"
>
<div
class="relative site-container z-20 w-full mx-auto mt-16 px-4 md:mt-18 lg:mt-20 xl:px-0"
class="relative site-container z-20 w-full mx-auto mt-16 px-4 md:mt-18 lg:mt-20 xl:px-0"
>
<div class="relative w-full px-4 flex flex-col items-center justify-between md:flex-row mb-16 ">
<div class="relative w-full md:max-w-[520px] md:w-1/2 text-center sm:text-left sm:-mt-8">
<div
class="relative w-full px-4 flex flex-col items-center justify-between md:flex-row mb-16"
>
<div
class="relative w-full md:max-w-[520px] md:w-1/2 text-center sm:text-left sm:-mt-8"
>
<!-- Title - AnimatedText animation -->
<h1 class="mb-4">
<AnimatedText
@@ -25,14 +29,14 @@ keywords="Alexandre, Portfolio, Developer, Infrastructure, Homelab, HEC Paris, E
delay={0.1}
duration={0.5}
stagger={0.08}
class="text-5xl text-pri leading-tight md:text-4xl lg:text-6xl font-brand "
class="text-5xl text-pri leading-tight md:text-4xl lg:text-6xl font-brand"
/>
</h1>
<!-- Tagline -->
<div class="mb-4">
<AnimatedText
content="Business x Engineering x Infrastructure"
content="Engineering, Infrastructure and Management"
delay={0.3}
duration={0.5}
stagger={0.02}
@@ -59,7 +63,11 @@ keywords="Alexandre, Portfolio, Developer, Infrastructure, Homelab, HEC Paris, E
data-aos-duration="500"
data-aos-once="true"
>
<Button url={siteConfig.social.github} type="fill" className="m-auto mt-4 text-center sm:text-left sm:m-0 sm:mt-6 max-w-[200px]">
<Button
url={siteConfig.social.github}
type="fill"
className="m-auto mt-4 text-center sm:text-left sm:m-0 sm:mt-6 max-w-[200px]"
>
View GitHub
</Button>
</div>
@@ -72,7 +80,7 @@ keywords="Alexandre, Portfolio, Developer, Infrastructure, Homelab, HEC Paris, E
data-aos-duration="600"
data-aos-once="true"
>
<SocialCard displaySocialIds={[1, 2]}/>
<SocialCard displaySocialIds={[1, 2]} />
</div>
</div>
@@ -105,7 +113,10 @@ keywords="Alexandre, Portfolio, Developer, Infrastructure, Homelab, HEC Paris, E
data-aos-duration="600"
data-aos-once="true"
>
<FeaturedWork title="Projects" description="What I've been working on." limit={3} />
<FeaturedWork
title="Projects"
description="What I've been working on."
limit={3}
/>
</section>
</Layout>