15 lines
373 B
TypeScript
15 lines
373 B
TypeScript
import freestyleLogo from "/turingflow-blue-logo.png";
|
|
import "./App.css";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="flex items-center justify-center flex-col min-h-screen bg-gray-100">
|
|
<a href="https://vite.dev" target="_blank">
|
|
<img src={freestyleLogo} alt="Vite logo" className="opacity-10 w-48" />
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|