mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-26 11:22:04 +02:00
WIP: temp commit in case my laptop explodes
This commit is contained in:
parent
be75f60b38
commit
7707d8b7db
7 changed files with 56 additions and 11 deletions
|
@ -7,11 +7,15 @@ interface SectionProps {
|
|||
note: string;
|
||||
}
|
||||
const { imgUrl, imgAlt, title, description, note } = Astro.props;
|
||||
import '../styles/components/ImageSection.scss'
|
||||
---
|
||||
|
||||
<section>
|
||||
<h1>{title}</h1>
|
||||
<img src={imgUrl} alt={imgAlt} />
|
||||
<p>{description}</p>
|
||||
<p>{note}</p>
|
||||
<section class="ImageSection">
|
||||
<div class="backgroundImage"></div>
|
||||
<div class="content">
|
||||
<h1>{title}</h1>
|
||||
<img src={imgUrl} alt={imgAlt} />
|
||||
<p>{description}</p>
|
||||
<p>{note}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue