Skip to content

Commit

Permalink
Merge pull request #7 from abolfazlghalandary/dev
Browse files Browse the repository at this point in the history
style the website more
  • Loading branch information
mojo-izadi authored Oct 14, 2024
2 parents 9d2f3fe + bd1b768 commit 69ad7ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ function App() {
<div>Team</div>
<div>Introduction</div>
</h1>
<p className="flex flex-row justify-center items-center">
{IntroBox('Ghalandary')}
<p className="flex flex-row justify-center items-center m-10">
{IntroBox('Abolfazl', 'Ghalandary')}
</p>
</div>
)
}

export default App

function IntroBox(name: string) {
function IntroBox(name: string, last_name: string) {
return (
<div className='border-[1px] border-white p-2 rounded-2xl'>
<div className='border-[1px] border-white p-10 rounded-2xl m-2'>
<p className='text-white'>{name}</p>

<p className='text-white'>{last_name}</p>
</div>
)
}

0 comments on commit 69ad7ea

Please sign in to comment.