Skip to content
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

Animate logo #77

Merged
merged 19 commits into from
Feb 11, 2024
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 README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p align="center"><img src="assets/brand/logo.svg" width="256" /></p>
<p align="center"><img src="assets/brand/logo.gif" width="256" /></p>

<h1 align="center">Firereact</h1>

Expand Down
Binary file added assets/brand/logo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/brand/logo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Introduction

<center>
<img src="assets/brand/logo.svg" width="256" alt="firereact logo" />
<img src="assets/brand/logo.gif" width="256" alt="firereact logo" />
</center>

<h1 align="center">Firereact</h1>
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
"lint:check": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"lint": "eslint src --ext .ts,.tsx --ignore-path .gitignore --fix",
"lint:check": "eslint src --ext .ts,.tsx --ignore-path .gitignore",
"formatter:run": "prettier --no-error-on-unmatched-pattern --write src/**/*.ts src/**/*.tsx *.ts *.tsx",
"formatter:check": "prettier --no-error-on-unmatched-pattern --check src/**/*.ts src/**/*.tsx *.ts *.tsx",
"build": "tsc --project tsconfig.build.json && vite build"
"build": "tsc --project tsconfig.build.json && vite build",
"remotion:logo:start": "cd remotion/logo && npm start",
"remotion:logo:build": "cd remotion/logo && npm run build:gif"
},
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions remotion/logo/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "@remotion",
"env": {
"node": true
}
}
7 changes: 7 additions & 0 deletions remotion/logo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
dist
.DS_Store
.env

# Ignore the output video from Git but not videos you import into src/.
out
14 changes: 14 additions & 0 deletions remotion/logo/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": false,
"useTabs": true,
"overrides": [
{
"files": ["*.yml"],
"options": {
"singleQuote": false
}
}
]
}
60 changes: 60 additions & 0 deletions remotion/logo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Remotion video with Tailwind

<p align="center">
<a href="https://github.com/remotion-dev/logo">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/remotion-dev/logo/raw/main/animated-logo-banner-dark.gif">
<img alt="Animated Remotion Logo" src="https://github.com/remotion-dev/logo/raw/main/animated-logo-banner-light.gif">
</picture>
</a>
</p>

Welcome to your Remotion project!

## Commands

**Install Dependencies**

```console
npm i
```

**Start Preview**

```console
npm start
```

**Render video**

```console
npm run build
```

**Upgrade Remotion**

```console
npm run upgrade
```

## Using server-side rendering

This template uses a [custom Webpack override](https://www.remotion.dev/docs/webpack). If you are using server-side rendering, you need to import the override function from `./src/webpack-override.ts` and pass it to [`bundle()`](https://www.remotion.dev/docs/bundle) (if using SSR) and [`deploySite()`](https://www.remotion.dev/docs/lambda/deploysite) (if using Lambda).

## Docs

Get started with Remotion by reading the [fundamentals page](https://www.remotion.dev/docs/the-fundamentals).

Get started with Tailwind by reading the ["Utility first" page](https://tailwindcss.com/docs/utility-first)

## Help

We provide help [on our Discord server](https://remotion.dev/discord).

## Issues

Found an issue with Remotion? [File an issue here](https://github.com/remotion-dev/remotion/issues/new).

## License

Note that for some entities a company license is needed. Read [the terms here](https://github.com/remotion-dev/remotion/blob/main/LICENSE.md).
175 changes: 175 additions & 0 deletions remotion/logo/assets/core-firebase.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
174 changes: 174 additions & 0 deletions remotion/logo/assets/frame-react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading