Skip to content

New Design #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
20ce3ba
Prototype new design
leonard84 Apr 15, 2025
a2ced41
design v2
leonard84 Apr 15, 2025
8a8e916
Add missing tag line
leonard84 Apr 15, 2025
ee7a311
Fix link text
leonard84 Apr 15, 2025
e2a93ec
Add logo and .gitignore
leonard84 Apr 15, 2025
9e5cde1
Polish blurb
leonard84 Apr 15, 2025
16d2e68
Move links section
leonard84 Apr 15, 2025
30587e8
Remove hover animation for links
leonard84 Apr 15, 2025
5b3c61b
Merge links into cta section
leonard84 Apr 15, 2025
9dcdbb1
Fix link animations
leonard84 Apr 15, 2025
2e1dd5a
Repeat CTA after code block
leonard84 Apr 15, 2025
3e6a61d
Update example code and add output
leonard84 Apr 15, 2025
d8d9e9e
More cleanup
leonard84 Apr 15, 2025
b77cdf2
Add some seo metadata
leonard84 Apr 16, 2025
bc74fff
Moved to vite and tailwind for building
leonard84 Apr 20, 2025
2aaa2c5
Fix hover animation for cards
leonard84 Apr 20, 2025
fdba659
Increase delay for fade animation of cards
leonard84 Apr 20, 2025
2b74a4f
Add switch to disable AOS animations
leonard84 Apr 20, 2025
2fa5e58
Add fontawesome svg icons
leonard84 Apr 20, 2025
c1134b0
Add stackoverflow and latest version shield
leonard84 Apr 20, 2025
beab51d
Add workflow for verifying and previewing PR
leonard84 Apr 20, 2025
55afb7f
Add Playwright for visual testing and setup git lfs
leonard84 Apr 20, 2025
f178025
Add workflow for updating screenshots
leonard84 Apr 20, 2025
315c3ed
Support both `main` and `master` for now
leonard84 Apr 20, 2025
9bd0e1d
Add social links
leonard84 Apr 20, 2025
cf68a90
Set default working dir to `spock-website/`
leonard84 Apr 20, 2025
3b103c8
Help `setup-node` to find package-lock.json file
leonard84 Apr 20, 2025
3dca2e2
Fix playwright reporter config
leonard84 Apr 20, 2025
166185f
Use fontawesome for feature card icons as well
leonard84 Apr 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Increase delay for fade animation of cards
  • Loading branch information
leonard84 committed Apr 20, 2025
commit fdba659e69f7042930d596c8614e43f7c479dda4
10 changes: 5 additions & 5 deletions spock-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h3 class="text-xl font-semibold text-gray-100 mb-2">Expressive Specifications</
non-programmers.</p>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="150">
<div data-aos="fade-up" data-aos-delay="200">
<div class="feature-card h-full">
<svg viewBox="0 0 24 24">
<path d="M3 17l6-6 4 4 8-8"/>
Expand All @@ -101,7 +101,7 @@ <h3 class="text-xl font-semibold text-gray-100 mb-2">Powerful Mocking</h3>
<p class="text-gray-300">Create flexible and powerful mocks and stubs with built-in support.</p>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="200">
<div data-aos="fade-up" data-aos-delay="300">
<div class="feature-card h-full">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10"/>
Expand All @@ -111,7 +111,7 @@ <h3 class="text-xl font-semibold text-gray-100 mb-2">JUnit Platform</h3>
<p class="text-gray-300">Seamless integration with JUnit 5+ and build tools.</p>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="250">
<div data-aos="fade-up" data-aos-delay="400">
<div class="feature-card h-full">
<svg viewBox="0 0 24 24">
<path d="M3 3h18v6H3zM3 15h18v6H3z"/>
Expand All @@ -121,7 +121,7 @@ <h3 class="text-xl font-semibold text-gray-100 mb-2">Data-Driven Testing</h3>
<p class="text-gray-300">Easily run the same test with different sets of data.</p>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="300">
<div data-aos="fade-up" data-aos-delay="500">
<div class="feature-card h-full">
<svg viewBox="0 0 24 24">
<polygon points="12 2 15 8 22 9 17 14 18 21 12 18 6 21 7 14 2 9 9 8 12 2"/>
Expand All @@ -130,7 +130,7 @@ <h3 class="text-xl font-semibold text-gray-100 mb-2">Groovy DSL</h3>
<p class="text-gray-300">Leverage the power and flexibility of the Groovy language.</p>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="350">
<div data-aos="fade-up" data-aos-delay="600">
<div class="feature-card h-full">
<svg viewBox="0 0 24 24">
<rect x="3" y="3" width="18" height="18" rx="2"/>
Expand Down