We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a08a3d8 commit 6edb6a2Copy full SHA for 6edb6a2
3 files changed
src/App.tsx
@@ -0,0 +1,14 @@
1
+function App() {
2
+ return (
3
+ <div className="min-h-screen bg-gray-900 text-white">
4
+ <h1 className="text-4xl font-bold text-center py-10">
5
+ Farese.com - Reformed Baptist Church Directory
6
+ </h1>
7
+ <p className="text-center text-gray-400">
8
+ Vite + React 19 + TypeScript + Tailwind v4 + MapLibre GL
9
+ </p>
10
+ </div>
11
+ );
12
+}
13
+
14
+export default App;
src/main.tsx
@@ -0,0 +1,10 @@
+import { StrictMode } from 'react';
+import { createRoot } from 'react-dom/client';
+import App from './App';
+import './styles/globals.css';
+createRoot(document.getElementById('root')!).render(
+ <StrictMode>
+ <App />
+ </StrictMode>,
+);
src/styles/globals.css
@@ -0,0 +1 @@
+@import "tailwindcss";
0 commit comments