Add App.jsx

This commit is contained in:
2026-02-20 12:12:37 +00:00
parent 9a95f74488
commit c3f149c54e

11
src/App.jsx Normal file
View File

@@ -0,0 +1,11 @@
import React from "react"
export default function App() {
return (
<div style={{ fontFamily: "sans-serif", maxWidth: 600, margin: "80px auto", textAlign: "center" }}>
<h1>🚀 2SECURE Dev Platform</h1>
<p>Auto-deploy działa! Każdy push do Gitea deployuje aplikację automatycznie.</p>
<p style={{ color: "#666", fontSize: 14 }}>Powered by Gitea + Woodpecker CI + Traefik</p>
</div>
)
}