@@ -13,13 +13,17 @@ import LogoSlider from '../components/Slider/LogoSlider';
13
13
import Image from 'next/image' ;
14
14
import CustomLink from '../components/Link' ;
15
15
import { getAllCustomers } from '../lib/customers' ;
16
+ import Content from '../components/ContainerElements/Content' ;
17
+ import Button from '../components/Buttons/Button' ;
18
+ import { IoArchiveOutline } from 'react-icons/io5' ;
16
19
17
20
export default function Home ( { customers } ) {
18
21
const { metadata = { } } = useSite ( ) ;
19
22
const { title } = metadata ;
20
23
const { isMobile } = useViewport ( ) ;
21
24
const { setCameraTarget } = useContext ( ThreeSceneContext ) ;
22
25
const clientsRef = useRef ( null ) ;
26
+ const currentYear = new Date ( ) . getFullYear ( ) ;
23
27
24
28
useEffect ( ( ) => {
25
29
const newTarget = new Vector3 ( ) ;
@@ -48,7 +52,61 @@ export default function Home({ customers }) {
48
52
} ) }
49
53
</ LogoSlider >
50
54
</ div >
51
- < Section className = { styles . tileSection } > </ Section >
55
+ { /*<Section className={styles.services}>
56
+ <Content></Content>
57
+ </Section>*/ }
58
+ < Section className = { styles . aboutSection } >
59
+ < Content className = { styles . aboutContent } >
60
+ < div >
61
+ < h3 > About Me</ h3 >
62
+ < p >
63
+ I am a 24-year-old Bachelor student in Computer Science and Media at Media University Stuttgart (HdM),
64
+ Germany. As a full-stack developer, I enjoy optimizing processes using my IT knowledge and continually
65
+ learning new technologies to achieve that goal. Creating a secure and impressive user experience are
66
+ crucial parts to me.
67
+ </ p >
68
+ < div className = { styles . aboutBlock } >
69
+ < p >
70
+ During my studies, I used to work as a tutor and enjoyed assisting other students in various design and
71
+ software projects. While explaining, things become even clearer for myself. As a student trainee I
72
+ gained insights in AI appliance at our institute IAAI for two semesters. Subsequently, when working on
73
+ software projects, I always advocated for appliance security and constantly developed my passion for
74
+ InfoSec while continuing my exciting journey at Porsche.
75
+ </ p >
76
+ </ div >
77
+ </ div >
78
+ < div className = { styles . numbers } >
79
+ < div className = { styles . infoBox } >
80
+ < span className = { styles . years } > { currentYear - 2014 } </ span >
81
+ < span >
82
+ Jahre < br />
83
+ Grafikdesign
84
+ </ span >
85
+ </ div >
86
+ < div className = { styles . infoBox } >
87
+ < span className = { styles . years } > { currentYear - 2017 } </ span >
88
+ < span >
89
+ Jahre Web < br />
90
+ Entwicklung
91
+ </ span >
92
+ </ div >
93
+ < div className = { styles . infoBox } >
94
+ < span className = { styles . years } > { currentYear - 2019 } </ span >
95
+ < span >
96
+ Jahre Software < br />
97
+ Entwicklung
98
+ </ span >
99
+ </ div >
100
+ </ div >
101
+ </ Content >
102
+ </ Section >
103
+ < Section >
104
+ < Content className = { styles . portfolioContent } >
105
+ < Button href = { 'https://www.apps.benedict.lang-familie.de' } className = { styles . showWork } >
106
+ All Work < IoArchiveOutline />
107
+ </ Button >
108
+ </ Content >
109
+ </ Section >
52
110
</ Layout >
53
111
) ;
54
112
}
0 commit comments