Skip to content
Open
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
216 changes: 9 additions & 207 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions videos/laudos-launch/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ["@launchpad/shared", "@launchpad/assets"],
};

module.exports = nextConfig;
45 changes: 45 additions & 0 deletions videos/laudos-launch/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "@launchpad/LaudosLaunch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"remotion": "remotion studio",
"render": "remotion render LaudosLaunchFull",
"render:preview": "remotion render LaudosLaunchFull --scale=0.5"
},
"dependencies": {
"@launchpad/shared": "workspace:*",
"@launchpad/assets": "workspace:*",
"@remotion/bundler": "4.0.407",
"@remotion/cli": "4.0.407",
"@remotion/google-fonts": "4.0.407",
"@remotion/paths": "4.0.407",
"@remotion/player": "4.0.407",
"@remotion/shapes": "4.0.407",
"@remotion/tailwind-v4": "4.0.407",
"clsx": "2.1.1",
"next": "16.0.10",
"react": "19.2.3",
"react-dom": "19.2.3",
"remotion": "4.0.407",
"tailwind-merge": "3.0.1",
"zod": "3.22.3"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.1",
"@remotion/eslint-plugin": "4.0.407",
"@types/node": "20.12.14",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"autoprefixer": "10.4.20",
"eslint": "9.19.0",
"postcss": "8.4.47",
"prettier": "3.6.0",
"tailwindcss": "4.0.3",
"typescript": "5.9.3"
}
}
8 changes: 8 additions & 0 deletions videos/laudos-launch/postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const config = {
plugins: {
"@tailwindcss/postcss": {},
autoprefixer: {},
},
};

export default config;
Empty file.
Binary file added videos/laudos-launch/public/ascending-ticks.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/background-music.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/deep-whoosh.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/descending-ticks.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/pop.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/selection-tap.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/typing.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/unscramble.wav
Binary file not shown.
Binary file added videos/laudos-launch/public/whoosh.wav
Binary file not shown.
5 changes: 5 additions & 0 deletions videos/laudos-launch/remotion.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Config } from "@remotion/cli/config";
import { webpackOverride } from "./src/remotion/webpack-override.mjs";

Config.setVideoImageFormat("jpeg");
Config.overrideWebpackConfig(webpackOverride);
15 changes: 15 additions & 0 deletions videos/laudos-launch/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Metadata } from "next";
import "../styles/global.css";

export const metadata: Metadata = {
title: "Laudos.AI Launch Video Preview",
description: "Preview and render Remotion videos",
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}
Loading