Complete Next.js application for managing OBS Source Switcher - Stream management with multiple screen layouts - Team management CRUD operations - SQLite database integration - OBS WebSocket API integration - Updated to latest versions (Next.js 15.4.1, React 19.1.0, Tailwind CSS 4.0.0) - Enhanced .gitignore for privacy and development
14 lines
No EOL
308 B
TypeScript
14 lines
No EOL
308 B
TypeScript
import './globals.css';
|
|
|
|
export const metadata = {
|
|
title: 'OBS Source Switcher',
|
|
description: 'A tool to manage OBS sources dynamically',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
} |