Skip to content

Commit

Permalink
fix(templates): fix blink shadow for devfest nantes 2024 (#1245)
Browse files Browse the repository at this point in the history
  • Loading branch information
CruuzAzul authored Oct 14, 2024
1 parent e04d21a commit e8592ba
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 13 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from 'react';
import {loadFont} from '@remotion/google-fonts/CrimsonText';
import {AbsoluteFill, Sequence} from 'remotion';
import {AbsoluteFill, Sequence, staticFile} from 'remotion';
import {z} from 'zod';

import {BackgroundFiller} from '../../../../design/atoms/BackgroundFiller';
import {ShowcaseDevfestNantes2024Schema} from '../types/types';

import {Details} from './Details';
Expand All @@ -25,14 +26,21 @@ export const DevfestNantes2024 = ({
return (
<AbsoluteFill
style={{
backgroundColor: '#e4595c',
overflow: 'hidden',
fontFamily,
textTransform: 'uppercase',
boxShadow:
'inset 0 0px 200px rgba(0, 0, 0, 0.9), inset 0 -2px 4px rgba(0, 0, 0, 0.5)',
}}
>
<Sequence>
<BackgroundFiller
imageUrl={staticFile(
'/images/showcases/devfestNantes/2024/background-filler-paysage.png',
)}
style={{
transform: 'scale(1)',
}}
/>
</Sequence>
<Sequence from={30}>
<GhostBackground />
</Sequence>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ import {
Easing,
interpolate,
Sequence,
staticFile,
useCurrentFrame,
} from 'remotion';
import {z} from 'zod';

import {BackgroundFiller} from '../../../../design/atoms/BackgroundFiller';
import {ShowcaseDevfestNantes2024Schema} from '../types/types';

import {GhostBackground} from './GhostBackground';
Expand All @@ -35,14 +37,21 @@ export const DevfestNantesPhrase2024 = ({
return (
<AbsoluteFill
style={{
backgroundColor: '#e4595c',
overflow: 'hidden',
fontFamily,
textTransform: 'uppercase',
boxShadow:
'inset 0 0px 200px rgba(0, 0, 0, 0.9), inset 0 -2px 4px rgba(0, 0, 0, 0.5)',
}}
>
<Sequence>
<BackgroundFiller
imageUrl={staticFile(
'/images/showcases/devfestNantes/2024/background-filler-paysage.png',
)}
style={{
transform: 'scale(1)',
}}
/>
</Sequence>
<Sequence from={30}>
<GhostBackground />
</Sequence>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ import {
Easing,
interpolate,
Sequence,
staticFile,
useCurrentFrame,
} from 'remotion';
import {z} from 'zod';

import {BackgroundFiller} from '../../../../design/atoms/BackgroundFiller';
import {ShowcaseDevfestNantes2024Schema} from '../types/types';

import {Details} from './Details';
Expand Down Expand Up @@ -39,14 +41,21 @@ export const DevfestNantesLoop2024 = ({
return (
<AbsoluteFill
style={{
backgroundColor: '#e4595c',
overflow: 'hidden',
fontFamily,
textTransform: 'uppercase',
boxShadow:
'inset 0 0px 200px rgba(0, 0, 0, 0.9), inset 0 -2px 4px rgba(0, 0, 0, 0.5)',
}}
>
<Sequence>
<BackgroundFiller
imageUrl={staticFile(
'/images/showcases/devfestNantes/2024/background-filler-paysage.png',
)}
style={{
transform: 'scale(1)',
}}
/>
</Sequence>
<Sequence from={30}>
<GhostBackground />
</Sequence>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ import {
Easing,
interpolate,
Sequence,
staticFile,
useCurrentFrame,
} from 'remotion';
import {z} from 'zod';

import {BackgroundFiller} from '../../../../design/atoms/BackgroundFiller';
import {ShowcaseDevfestNantes2024Schema} from '../types/types';

import {Details} from './Details';
Expand Down Expand Up @@ -40,14 +42,21 @@ export const DevfestNantesLoopTotem2024 = ({
return (
<AbsoluteFill
style={{
backgroundColor: '#e4595c',
overflow: 'hidden',
fontFamily,
textTransform: 'uppercase',
boxShadow:
'inset 0 0px 200px rgba(0, 0, 0, 0.9), inset 0 -2px 4px rgba(0, 0, 0, 0.5)',
}}
>
<Sequence>
<BackgroundFiller
imageUrl={staticFile(
'/images/showcases/devfestNantes/2024/background-filler-totem.png',
)}
style={{
transform: 'scale(1)',
}}
/>
</Sequence>
<Sequence>
<Logo isTotemDisplayMode />
</Sequence>
Expand Down

0 comments on commit e8592ba

Please sign in to comment.