Skip to content

Commit 68eb28a

Browse files
chore(release): v0.1.0 (#128)
* chore: restore release-please configuration file * fix: update release-please config file path Release-As: 0.1.0 * fix: build issue in splittextblur.tsx
1 parent 7ad9338 commit 68eb28a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- uses: googleapis/release-please-action@v4
1818
with:
1919
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
20-
config-file: .release-please-config.json
20+
config-file: ../../release-please-config.json

frontend/src/features/landing/components/hero/SplitTextBlur.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ const SplitTextBlur = ({
4747
};
4848

4949
const wordVariants = {
50-
hidden: {
51-
opacity: 0,
50+
hidden: {
51+
opacity: 0,
5252
filter: "blur(10px)",
5353
y: yOffset,
5454
},
55-
visible: {
56-
opacity: 1,
55+
visible: {
56+
opacity: 1,
5757
filter: "blur(0px)",
5858
y: 0,
5959
transition: {
60-
type: "spring",
60+
type: "spring" as const,
6161
stiffness: springConfig.stiffness,
6262
damping: springConfig.damping,
6363
mass: springConfig.mass,
@@ -78,7 +78,7 @@ const SplitTextBlur = ({
7878
<motion.span
7979
key={index}
8080
variants={wordVariants}
81-
style={{
81+
style={{
8282
willChange: "transform, opacity, filter",
8383
display: "inline-block",
8484
marginRight: index < words.length - 1 ? "0.25em" : "0",
@@ -96,7 +96,7 @@ const HeroText = () => {
9696
return (
9797
<SplitTextBlur
9898
text="Meet the AI assistant that actually works"
99-
className="max-w-(--breakpoint-md) py-3 text-center text-[5.13rem] font-medium font-inter text-white sm:text-7xl"
99+
className="max-w-(--breakpoint-md) py-3 text-center font-inter text-[5.13rem] font-medium text-white sm:text-7xl"
100100
delay={1}
101101
staggerDelay={0.1}
102102
springConfig={{
@@ -109,4 +109,4 @@ const HeroText = () => {
109109
);
110110
};
111111

112-
export { HeroText,SplitTextBlur };
112+
export { HeroText, SplitTextBlur };

0 commit comments

Comments
 (0)