This commit is contained in:
2026-06-22 05:51:46 +03:00
commit 03f9319b3a
32 changed files with 11008 additions and 0 deletions

26
src/components/Hero.astro Normal file
View File

@@ -0,0 +1,26 @@
---
import { SITE } from "../site-config";
export interface Props {
image: string;
title: string;
subtitle: string;
}
const { image, title, subtitle } = Astro.props;
---
<section class="hero">
<div class="container hero-grid">
<div class="hero-image">
<img src={image} alt={title} width="600" height="800" loading="eager" />
</div>
<div class="hero-content">
<h1>{title}</h1>
<p class="subtitle">{subtitle}</p>
<p>
{SITE.tagline} Based in {SITE.location}.
</p>
</div>
</div>
</section>