Work begin

This commit is contained in:
Benny
2026-04-20 23:43:40 -05:00
parent 0d4c94bff9
commit 22e9777861
17 changed files with 3367 additions and 0 deletions

32
resume-app/src/App.jsx Normal file
View File

@@ -0,0 +1,32 @@
import { useState } from 'react'
import reactLogo from './assets/react.svg'
import viteLogo from './assets/vite.svg'
import heroImg from './assets/hero.png'
import './App.css'
function App() {
const [count, setCount] = useState(0)
return (
<>
<div className="min-h-screen flex items-center justify-center">
<div className="bg-gray-100 p-4 rounded-lg shadow-md w-100 ">
<div className=""><h1>Benjamin Mosley</h1></div>
<div className=""><h2>Software Developer</h2></div>
<div className=""><h2>Contact Information</h2></div>
</div>
</div>
</>
)
}
export default App