From bd1b7684aebafaf1881390c3181492368c105275 Mon Sep 17 00:00:00 2001 From: ghalandary Date: Tue, 15 Oct 2024 00:01:39 +0330 Subject: [PATCH] style the website more --- src/App.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 647af8f..6da6db6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,8 +9,8 @@ function App() {
Team
Introduction
-

- {IntroBox('Ghalandary')} +

+ {IntroBox('Abolfazl', 'Ghalandary')}

) @@ -18,11 +18,11 @@ function App() { export default App -function IntroBox(name: string) { +function IntroBox(name: string, last_name: string) { return ( -
+

{name}

- +

{last_name}

) } \ No newline at end of file