Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6c56d88
feat(animations): add basic setup and intro page
AntoniaStr Jun 8, 2026
80523b5
feat(button-animations): add buttons page and refactor animations to …
AntoniaStr Jun 9, 2026
1f41f18
feat(animations): refactor css to use native tailwind approach
AntoniaStr Jun 11, 2026
aff70ce
update documentation
AntoniaStr Jun 11, 2026
9549c25
change open/closed state vars to visible/hidden
AntoniaStr Jun 11, 2026
373cd3e
feat(card-animations): scroll reveal + skeletons implementation
klupsky Jun 11, 2026
cf487c3
polish: reuse existing variants, add frame motion reveal wrapper
klupsky Jun 12, 2026
dda9553
chore: update names
klupsky Jun 12, 2026
cc76f43
polish(card-grid): remove skeleton page, add skeleton to article grid
klupsky Jun 16, 2026
5850795
refactor(animations): @property based primitives & derived @utilities
serum Jun 25, 2026
1403065
Merge pull request #48 from functndev/refactor/animations-tailwind
serum Jun 25, 2026
a608561
feat(animations): improve basic implementation
klupsky Jun 26, 2026
86d796f
Merge pull request #47 from functndev/feat/grid-code-snippets
AntoniaStr Jun 29, 2026
191efa3
feat(button-animations): refactor button examples to use jsx directly…
AntoniaStr Jun 19, 2026
c78c980
feat(hover-animations): refactor page to use jsx directly
AntoniaStr Jun 19, 2026
1147991
Merge pull request #52 from functndev/fix/cherry-pick-button-animatio…
AntoniaStr Jun 30, 2026
0fc0de1
polish
klupsky Jul 2, 2026
27e71bd
fix(animation-examples): fix classnames, polish
klupsky Jul 2, 2026
75ae7f1
feat(product-carousel): basic implementation
klupsky Jul 2, 2026
bc60221
Merge pull request #60 from functndev/fix/css-hover-animations
AntoniaStr Jul 3, 2026
14d82d1
Merge pull request #59 from functndev/polish/grid-page
AntoniaStr Jul 3, 2026
0fcdb2e
Merge pull request #61 from functndev/feat/wsk-carousel
AntoniaStr Jul 3, 2026
7db5957
feat(animations): add docs for getting started and using the animatio…
klupsky Jul 15, 2026
e8ce8df
Merge pull request #64 from functndev/feat/animations-docs
klupsky Jul 15, 2026
2498a5d
feat(animations-buttons): add expand on group hover button examples
klupsky Jul 15, 2026
2a54d9a
Merge pull request #65 from functndev/feat/button-expand-on-hover
klupsky Jul 15, 2026
596157c
feat(animated-button): add scroll morph showcase example
klupsky Jul 15, 2026
1159231
(feat/animated-button): basic implementation
klupsky Jul 15, 2026
d86dfba
polish(animated-button): clean up
klupsky Jul 15, 2026
318f55d
refactor(animations/motion-reveal)
serum Jul 16, 2026
c1f1261
feat(animations): add scroll-reveal-text
serum Jul 21, 2026
a2e8702
feat(scroll-animation-remus-example): rebase onto develop
klupsky Jul 23, 2026
90f32d2
merge: resolve showcase page conflict with feat/animations-library
klupsky Jul 23, 2026
ec61c22
Merge pull request #67 from functndev/feat/scroll-animation-remus-exa…
klupsky Jul 23, 2026
d9553ab
feat(wsk-cards-carousel): rebase onto feat/animations-library
klupsky Jul 23, 2026
c6a0395
Merge pull request #69 from functndev/feat/wsk-cards-carousel
klupsky Jul 23, 2026
2ccd99a
feat(arian-carousel): rebase onto feat/animations-library
klupsky Jul 23, 2026
a92b056
Merge pull request #46 from functndev/feat/arian-carousel
klupsky Jul 23, 2026
b5ece31
feat(arian-hero): add hero entrance as showcase page hero
klupsky Jul 23, 2026
8d0e575
Merge pull request #71 from functndev/feat/animations-scroll-reveal-text
AntoniaStr Aug 5, 2026
2c2296b
resolve merge conflicts
AntoniaStr Aug 5, 2026
49fed2f
Merge pull request #70 from functndev/refactor/animations-motion-reveal
AntoniaStr Aug 5, 2026
2d9c80e
Merge pull request #68 from functndev/feat/arian-hero
AntoniaStr Aug 5, 2026
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
3 changes: 3 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { fromHtml } from 'hast-util-from-html';
import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
experimental: {
viewTransition: true,
},
// Configure `pageExtensions` to include markdown and MDX files
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
webpack(config) {
Expand Down
Loading