Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/components/site/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface Props {

const {
prefix = 'Automatically update your',
words = ['screenshots', 'release notes', 'support articles', 'knowledge base', 'API docs', 'tutorials', 'how-to guides', 'screenshots'],
words = ['customer docs', 'screenshots', 'release notes', 'developer docs', 'support articles', 'knowledge base', 'API docs', 'changelogs', 'tutorials', 'code examples', 'how-to guides', 'customer docs'],
subtitle = 'AI agents that eliminate docs drift and automate the most painful parts of docs maintenance.',
} = Astro.props;
---
Expand Down
47 changes: 37 additions & 10 deletions src/styles/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,30 +31,57 @@
}

.pl-site-hero-words > span {
animation: pl-site-word-loop 8s linear infinite;
animation: pl-site-word-loop 22s linear infinite;
}

@keyframes pl-site-word-loop {
0%,
18% {
7% {
transform: translateY(0%);
}
23%,
41% {
9%,
16% {
transform: translateY(-100%);
}
46%,
64% {
18%,
25% {
transform: translateY(-200%);
}
69%,
87% {
27%,
34% {
transform: translateY(-300%);
}
92%,
100% {
36%,
43% {
transform: translateY(-400%);
}
45%,
52% {
transform: translateY(-500%);
}
55%,
62% {
transform: translateY(-600%);
}
64%,
71% {
transform: translateY(-700%);
}
73%,
80% {
transform: translateY(-800%);
}
82%,
89% {
transform: translateY(-900%);
}
91%,
98% {
transform: translateY(-1000%);
}
100% {
transform: translateY(-1100%);
}
}

.pl-site-subtitle {
Expand Down