diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..ed03848 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,74 @@ +import { useState } from 'react' +import { Menu, X, ChevronDown } from 'lucide-react' + +function App() { + const [isMenuOpen, setIsMenuOpen] = useState(false) + + return ( +
+ {/* Navigation */} + + + {/* Main Content */} +
+
+

+ Welcome to Our App +

+

+ Built with React, Vite, and Tailwind CSS +

+ +
+
+
+ ) +} + +export default App \ No newline at end of file