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
Empty file removed App.js
Empty file.
3 changes: 3 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
14 changes: 14 additions & 0 deletions app/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import './globals.css'

export const metadata = {
title: 'Track Timing System',
description: 'Real-time track and field timing system',
}

export default function RootLayout({ children }) {
return (
<html lang="en" className="bg-black">
<body>{children}</body>
</html>
)
}
Loading