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.
- Loading branch information
Thomas Catinaud Taris
committed
Apr 21, 2024
1 parent
8502908
commit 84921c9
Showing
6 changed files
with
108 additions
and
84 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
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 |
---|---|---|
@@ -1,26 +1,29 @@ | ||
'use client'; | ||
"use client"; | ||
|
||
import * as React from 'react'; | ||
import '@/lib/env'; | ||
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'> | ||
<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> | ||
<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> | ||
<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
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
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
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