Work begin
This commit is contained in:
32
resume-app/src/App.jsx
Normal file
32
resume-app/src/App.jsx
Normal 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
|
||||
Reference in New Issue
Block a user