create success-stories page
This commit is contained in:
@@ -0,0 +1,239 @@
|
||||
{% extends 'public_base.html' %}
|
||||
{% load static %}
|
||||
{% block content %}
|
||||
|
||||
<div class="w-full bg-[#1a1a1a] py-12">
|
||||
<div class="max-w-7xl mx-auto flex flex-col lg:flex-row items-center justify-between px-4 lg:px-8 gap-8">
|
||||
|
||||
<!-- Text on the left -->
|
||||
<div class="flex flex-col gap-4 lg:w-1/2">
|
||||
<p class="text-indigo-500 font-semibold">Success stories</p>
|
||||
<h1 class="text-white text-5xl font-bold leading-snug">How B42 delivers</h1>
|
||||
<h1 class="text-white text-5xl font-bold leading-snug">success</h1>
|
||||
<h2 class="text-white text-xl font-medium mt-2">
|
||||
Digitalization is the key to <br>
|
||||
football training of the future
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<!-- Image on the right -->
|
||||
<div class="lg:w-1/2 flex justify-end">
|
||||
<img src="{% static 'images/stoey.png' %}"
|
||||
alt="Success story image"
|
||||
class="w-full max-w-md lg:max-w-lg h-56 sm:h-64 md:h-72 lg:h-96 object-cover rounded-3xl"/>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full bg-[#1a1a1a] py-12">
|
||||
<div class="max-w-7xl mx-auto flex flex-col lg:flex-row items-start gap-8 px-8">
|
||||
|
||||
<!-- Left side: heading -->
|
||||
<div class="lg:w-1/2 flex flex-col gap-4">
|
||||
<p class="text-indigo-500 font-semibold">Success stories</p>
|
||||
<h1 class="text-white text-3xl lg:text-4xl font-bold leading-snug">
|
||||
This is how coaches & clubs use <br>
|
||||
B42 for their team success
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<!-- Right side: paragraph -->
|
||||
<div class="lg:w-1/2 text-white text-sm leading-relaxed">
|
||||
The nice thing about the team? You win together, you lose together. Nevertheless, it is annoying when the last percent is missing in the decisive game in order to be successful. With B42, you have the opportunity to improve your performance as a team in every part of the team and in every phase of the season.
|
||||
These trainers tell you which functions they use and how.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="bg-[#1d1d1d] py-12 px-4 ">
|
||||
|
||||
|
||||
<!-- Cards Grid -->
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-y-8 justify-items-center m-auto w-[80%]">
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Duplicate Cards -->
|
||||
<div class="bg-[#6d78ff] rounded-[4rem] overflow-hidden flex flex-col">
|
||||
<!-- Image -->
|
||||
<img src="{% static 'images/prov.png' %}"
|
||||
alt="Former DFB physio"
|
||||
class="w-full h-64 object-cover rounded-[4rem]"
|
||||
/>
|
||||
|
||||
<!-- Content -->
|
||||
<div class="p-8 flex flex-col flex-grow justify-between text-left">
|
||||
|
||||
<!-- Date + Tags -->
|
||||
<div>
|
||||
<div class="flex flex-wrap items-center gap-3 mb-4">
|
||||
<span class="text-gray-300 text-sm font-bold">December 2021</span>>
|
||||
</div>
|
||||
|
||||
<!-- Title -->
|
||||
<h3 class="text-white text-xl font-semibold mb-6 leading-snug">
|
||||
Former DFB physio now rehab partner of B42
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<!-- Button -->
|
||||
<button
|
||||
class="w-14 h-14 bg-[#d0ff23] rounded-full flex items-center justify-center hover:bg-lime-400 transition"
|
||||
aria-label="Read more"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg"
|
||||
class="w-6 h-6 text-black"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
stroke-width="3">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7" />
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-[#6d78ff] rounded-[4rem] overflow-hidden flex flex-col">
|
||||
|
||||
<!-- Image -->
|
||||
<img src="{% static 'images/recover.png' %}"
|
||||
alt="Former DFB physio"
|
||||
class="w-full h-64 object-cover rounded-[4rem]"
|
||||
/>
|
||||
|
||||
<!-- Content -->
|
||||
<div class="p-8 flex flex-col flex-grow justify-between text-left">
|
||||
|
||||
<!-- Date + Tags -->
|
||||
<div>
|
||||
<div class="flex flex-wrap items-center gap-3 mb-4">
|
||||
<span class="text-gray-300 text-sm font-bold">December 2021</span>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Title -->
|
||||
<h3 class="text-white text-xl font-semibold mb-6 leading-snug">
|
||||
Former DFB physio now rehab partner of B42
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<!-- Button -->
|
||||
<button
|
||||
class="w-14 h-14 bg-[#d0ff23] rounded-full flex items-center justify-center hover:bg-lime-400 transition"
|
||||
aria-label="Read more"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg"
|
||||
class="w-6 h-6 text-black"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
stroke-width="3">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7" />
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="bg-[#6d78ff] rounded-[4rem] overflow-hidden flex flex-col">
|
||||
|
||||
<!-- Image -->
|
||||
<img src="{% static 'images/disrupt.png' %}"
|
||||
alt="Former DFB physio"
|
||||
class="w-full h-64 object-cover rounded-[4rem]"
|
||||
/>
|
||||
|
||||
<!-- Content -->
|
||||
<div class="p-8 flex flex-col flex-grow justify-between text-left">
|
||||
|
||||
<!-- Date + Tags -->
|
||||
<div>
|
||||
<div class="flex flex-wrap items-center gap-3 mb-4">
|
||||
<span class="text-gray-300 text-sm font-bold">December 2021</span>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Title -->
|
||||
<h3 class="text-white text-xl font-semibold mb-6 leading-snug">
|
||||
Former DFB physio now rehab partner of B42
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<!-- Button -->
|
||||
<button
|
||||
class="w-14 h-14 bg-[#d0ff23] rounded-full flex items-center justify-center hover:bg-lime-400 transition"
|
||||
aria-label="Read more"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg"
|
||||
class="w-6 h-6 text-black"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
stroke-width="3">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7" />
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Copy same card structure as many times as needed -->
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="w-full bg-[#1a1a1a] py-20">
|
||||
<div class="max-w-7xl mx-auto flex flex-col lg:flex-row items-start gap-8 px-8">
|
||||
|
||||
<!-- Left side: heading -->
|
||||
<div class="lg:w-1/2 flex flex-col gap-4">
|
||||
<p class="text-indigo-500 font-semibold">Interviews</p>
|
||||
<h1 class="text-white text-3xl lg:text-4xl font-bold leading-snug">
|
||||
Inspiration for effective use of B42
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<!-- Right side: paragraph -->
|
||||
<div class="lg:w-1/2 text-white text-sm leading-relaxed">
|
||||
What actually makes good trainers stand out? They make every player better every day. But that takes time, which is scarce in team training. That's why we give you lots of tools to work on each individual's strengths and weaknesses.
|
||||
|
||||
In an interview, these trainers explain how you can use these tools effectively.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<div>
|
||||
<img src="" alt="">
|
||||
</div>
|
||||
<p>Roland Hofmann</p>
|
||||
<p>1. FC Nürnberg, U16w</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user