forked from theodorusclarence/ts-nextjs-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* style: added color lightblue2 * feat: intro section in About page
- Loading branch information
1 parent
80a3d15
commit 4571523
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'use client'; | ||
|
||
import * as React from 'react'; | ||
import '@/lib/env'; | ||
|
||
const AboutPage = () => { | ||
return ( | ||
<> | ||
<IntroSection /> | ||
</> | ||
); | ||
} | ||
|
||
export default AboutPage; | ||
|
||
const IntroSection = () => { | ||
return ( | ||
<section className='flex justify-between px-6 lg:px-12 py-7 h-screen min-h-96 bg-lightblue2 text-darkblue1 font-primary'> | ||
<div> | ||
<h1 className='text-5xl md:text-7xl lg:text-9xl'>About</h1> | ||
<p className='uppercase md:text-2xl'>Pinkbombs</p> | ||
</div> | ||
<img src='/images/saumon.jpg' className='size-20 lg:size-44 lg:mr-10'></img> | ||
</section> | ||
) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters