Skip to content

Commit

Permalink
Change content order on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdinandsalis committed Aug 21, 2024
1 parent 764b883 commit 5e92abf
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,19 @@ export default function Home() {
</div>
</section>

<section>
<header className="mb-16 lg:mb-20">
<SectionHeading id="testimonials">
Stimmen aus der Walz
</SectionHeading>
</header>
<div className="grid grid-cols-1 items-center justify-items-center gap-8 md:grid-cols-2">
{testimonials.map((testimonial, idx) => {
return <TestimonialCard key={idx} {...testimonial} idx={idx} />
})}
</div>
</section>

<section>
<header className="mb-16 lg:mb-20">
<SectionHeading id="faq">Häufige Fragen</SectionHeading>
Expand Down Expand Up @@ -346,19 +359,6 @@ export default function Home() {
</div>
</section>

<section>
<header className="mb-16 lg:mb-20">
<SectionHeading id="testimonials">
Stimmen aus der Walz
</SectionHeading>
</header>
<div className="grid grid-cols-1 items-center justify-items-center gap-8 md:grid-cols-2">
{testimonials.map((testimonial, idx) => {
return <TestimonialCard key={idx} {...testimonial} idx={idx} />
})}
</div>
</section>

<section>
<header className="mb-16 lg:mb-20">
<SectionHeading id="kontakt">Anfahrt & Kontakt</SectionHeading>
Expand Down

0 comments on commit 5e92abf

Please sign in to comment.