We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d2f3fe + bd1b768 commit 69ad7eaCopy full SHA for 69ad7ea
src/App.tsx
@@ -9,20 +9,20 @@ function App() {
9
<div>Team</div>
10
<div>Introduction</div>
11
</h1>
12
- <p className="flex flex-row justify-center items-center">
13
- {IntroBox('Ghalandary')}
+ <p className="flex flex-row justify-center items-center m-10">
+ {IntroBox('Abolfazl', 'Ghalandary')}
14
</p>
15
</div>
16
)
17
}
18
19
export default App
20
21
-function IntroBox(name: string) {
+function IntroBox(name: string, last_name: string) {
22
return (
23
- <div className='border-[1px] border-white p-2 rounded-2xl'>
+ <div className='border-[1px] border-white p-10 rounded-2xl m-2'>
24
<p className='text-white'>{name}</p>
25
-
+ <p className='text-white'>{last_name}</p>
26
27
28
0 commit comments