Index: frontend/src/App.css
===================================================================
--- frontend/src/App.css	(revision 72053b5fc3ff291757af1cdd64e8fdfcb9e9b17d)
+++ frontend/src/App.css	(revision 59ed25cc7450bb1aac8fb6ef7f7199192f0bd346)
@@ -1,42 +1,1 @@
-#root {
-  max-width: 1280px;
-  margin: 0 auto;
-  padding: 2rem;
-  text-align: center;
-}
 
-.logo {
-  height: 6em;
-  padding: 1.5em;
-  will-change: filter;
-  transition: filter 300ms;
-}
-.logo:hover {
-  filter: drop-shadow(0 0 2em #646cffaa);
-}
-.logo.react:hover {
-  filter: drop-shadow(0 0 2em #61dafbaa);
-}
-
-@keyframes logo-spin {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(360deg);
-  }
-}
-
-@media (prefers-reduced-motion: no-preference) {
-  a:nth-of-type(2) .logo {
-    animation: logo-spin infinite 20s linear;
-  }
-}
-
-.card {
-  padding: 2em;
-}
-
-.read-the-docs {
-  color: #888;
-}
Index: frontend/src/App.jsx
===================================================================
--- frontend/src/App.jsx	(revision 72053b5fc3ff291757af1cdd64e8fdfcb9e9b17d)
+++ frontend/src/App.jsx	(revision 59ed25cc7450bb1aac8fb6ef7f7199192f0bd346)
@@ -1,35 +1,7 @@
-import { useState } from 'react'
-import reactLogo from './assets/react.svg'
-import viteLogo from '/vite.svg'
-import './App.css'
+import LandingPage from "./pages/LandingPage.jsx";
 
 function App() {
-  const [count, setCount] = useState(0)
-
-  return (
-    <>
-      <div>
-        <a href="https://vite.dev" target="_blank">
-          <img src={viteLogo} className="logo" alt="Vite logo" />
-        </a>
-        <a href="https://react.dev" target="_blank">
-          <img src={reactLogo} className="logo react" alt="React logo" />
-        </a>
-      </div>
-      <h1>Vite + React</h1>
-      <div className="card">
-        <button onClick={() => setCount((count) => count + 1)}>
-          count is {count}
-        </button>
-        <p>
-          Edit <code>src/App.jsx</code> and save to test HMR
-        </p>
-      </div>
-      <p className="read-the-docs">
-        Click on the Vite and React logos to learn more
-      </p>
-    </>
-  )
+  return <LandingPage />;
 }
 
-export default App
+export default App;
Index: frontend/src/index.css
===================================================================
--- frontend/src/index.css	(revision 72053b5fc3ff291757af1cdd64e8fdfcb9e9b17d)
+++ frontend/src/index.css	(revision 59ed25cc7450bb1aac8fb6ef7f7199192f0bd346)
@@ -1,2 +1,4 @@
+@import "tailwindcss";
+
 :root {
   font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
Index: frontend/src/pages/LandingPage.jsx
===================================================================
--- frontend/src/pages/LandingPage.jsx	(revision 59ed25cc7450bb1aac8fb6ef7f7199192f0bd346)
+++ frontend/src/pages/LandingPage.jsx	(revision 59ed25cc7450bb1aac8fb6ef7f7199192f0bd346)
@@ -0,0 +1,16 @@
+export default function LandingPage() {
+  return (
+    <div className="min-h-screen flex items-center justify-center p-8">
+      <div className="w-full max-w-md rounded-xl border p-6 text-center">
+        <h1 className="text-2xl font-semibold">Landing Page</h1>
+        <p className="mt-2 text-sm opacity-80">
+          Tailwind is wired up — replace this with real content.
+        </p>
+        <div className="mt-6 grid grid-cols-2 gap-3">
+          <div className="h-10 rounded-md bg-black/10" />
+          <div className="h-10 rounded-md bg-black/10" />
+        </div>
+      </div>
+    </div>
+  );
+}
