This commit is contained in:
Tben 2022-03-11 13:45:49 +01:00
parent 9fef96d967
commit 5e12f9dbde
3 changed files with 10 additions and 6 deletions

View File

@ -22,7 +22,7 @@ const about = () => {
<div className='w-full h-6'></div> <div className='w-full h-6'></div>
<article> <section>
<h2><TextShuffler textInput="My Web Dev Stack" /></h2> <h2><TextShuffler textInput="My Web Dev Stack" /></h2>
<ul style={ { maxWidth: "800px" } }> <ul style={ { maxWidth: "800px" } }>
<li> <li>
@ -80,9 +80,9 @@ const about = () => {
</span> </span>
</li> </li>
</ul> </ul>
</article> </section>
<article> <section>
<h2><TextShuffler textInput="My UI/UX Stack" /></h2> <h2><TextShuffler textInput="My UI/UX Stack" /></h2>
<ul style={ { maxWidth: "800px" } }> <ul style={ { maxWidth: "800px" } }>
<li> <li>
@ -128,7 +128,7 @@ const about = () => {
</span> </span>
</li> </li>
</ul> </ul>
</article> </section>
<div className="hero-ctas-section"> <div className="hero-ctas-section">

View File

@ -19,11 +19,11 @@ const about = () => {
<meta name="description" content="Some of my Work" /> <meta name="description" content="Some of my Work" />
</Head> </Head>
<h1><TextShuffler textInput="My Work" /></h1> <h1><TextShuffler textInput="My Work" /></h1>
<span className='hero-sub-text' style={ { marginTop: "-30px", marginBottom: "20px", display: "block" } }> <span className='hero-sub-text'>
<TextShuffler textInput="Some of my work ..." /> <TextShuffler textInput="Some of my work ..." />
</span> </span>
<div className='portfolio-entries-block'> <div className='portfolio-entries-block mt-4'>
{ portfolioEntries.map(entry => <PortfolioEntry key={ entry.title } title={ entry.title } description={ entry.description } url={ entry.url } image={ entry.image } />) } { portfolioEntries.map(entry => <PortfolioEntry key={ entry.title } title={ entry.title } description={ entry.description } url={ entry.url } image={ entry.image } />) }
</div> </div>
<div className='fixed top-0 left-0 -z-10' id='homepage-animation-wrapper'></div> <div className='fixed top-0 left-0 -z-10' id='homepage-animation-wrapper'></div>

View File

@ -75,6 +75,10 @@
margin-bottom: 0.25rem margin-bottom: 0.25rem
} }
.mt-4 {
margin-top: 1rem
}
.block { .block {
display: block display: block
} }