-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers.astro
More file actions
27 lines (24 loc) · 936 Bytes
/
members.astro
File metadata and controls
27 lines (24 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
import FooterBackground from '@assets/members/members-footer-background.jpeg';
import Hero from '@components/members/Hero.astro';
import MemberBenefits from '@components/members/MemberBenefits.astro';
import Testimonials from '@components/Testimonials.svelte';
import { getTestimonials } from '@data/real/testimonials';
import Layout from '@layouts/Layout.astro';
import { Image } from 'astro:assets';
const testimonials = await getTestimonials();
---
<Layout title="Mitgliedschaft">
<Hero />
<MemberBenefits />
<div class="lg:py-24">
<Testimonials client:load {testimonials} />
</div>
<Image
alt="YoungVision Menschen sitzen am Lagerfeuer"
class="h-[35rem] w-full object-cover lg:h-[60rem]"
sizes="(min-width: 1380px) 100vw, (min-width: 1040px) calc(25vw + 1020px), (min-width: 800px) 100vw, 731px"
src={FooterBackground}
widths={[747, 1070, 1308, 1494, 1720, 1920, 2048, 2241]}
/>
</Layout>