Initial commit: Electron video/audio calling client

This commit is contained in:
srtk 2026-02-08 15:40:22 +05:30
commit 9eb33512f4
22 changed files with 8848 additions and 0 deletions

11
tailwind.config.js Normal file
View file

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/renderer/index.html",
"./src/renderer/src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}