-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from AndyOooh/ED1-53-convert-landing-to-SSG
Ed1 53 convert landing to ssg
- Loading branch information
Showing
26 changed files
with
404 additions
and
370 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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { ComingSoon } from '../components/ComingSoon'; | ||
|
||
export default function AboutPage() { | ||
return ( | ||
<div> | ||
<ComingSoon pageName='About' /> | ||
</div> | ||
); | ||
} |
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,9 @@ | ||
import { ComingSoon } from '../../components/ComingSoon'; | ||
|
||
export default function CompaniesPage() { | ||
return ( | ||
<div> | ||
<ComingSoon pageName='Companies' /> | ||
</div> | ||
); | ||
} |
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,9 @@ | ||
import { ComingSoon } from '../components/ComingSoon'; | ||
|
||
export default function CompaniesPage() { | ||
return ( | ||
<div> | ||
<ComingSoon pageName='Companies' /> | ||
</div> | ||
); | ||
} |
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,9 @@ | ||
import { ComingSoon } from '../components/ComingSoon'; | ||
|
||
export default function CompaniesPage() { | ||
return ( | ||
<div> | ||
<ComingSoon pageName='Companies' /> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import React from 'react'; | ||
import { ColoredDiv } from 'ui'; | ||
|
||
import { container } from '../../styles/styles'; | ||
|
||
type Props = { | ||
pageName: string; | ||
}; | ||
export const ComingSoon = ({ pageName }: Props) => { | ||
return ( | ||
<section | ||
className={`main-height mt-16 flex flex-col justify-center items-center gap-4 ${container}`}> | ||
<h1 className='text-5xl'>{pageName}</h1> | ||
<h1 className='text-3xl'>Coming Soon..</h1> | ||
<div className='grid grid-cols-5 w-3/4'> | ||
<ColoredDiv color='pink' direction='top' height={12} width={24} rotateZ={45} /> | ||
<ColoredDiv color='green' direction='bottom' height={8} width={8} rotateZ={22.5} /> | ||
<ColoredDiv | ||
color='blue' | ||
direction='top' | ||
height={12} | ||
width={12} | ||
rotateZ={45} | ||
className='rounded-full' | ||
/> | ||
<ColoredDiv color='beige' direction='bottom' height={12} width={12} rotateZ={45} /> | ||
<ColoredDiv | ||
color='black' | ||
direction='top' | ||
height={12} | ||
width={18} | ||
rotateZ={90} | ||
className='rounded-3xl' | ||
/> | ||
<ColoredDiv color='white' direction='bottom' height={10} width={14} rotateZ={15} /> | ||
<ColoredDiv color='orange' direction='top' height={16} width={6} rotateZ={90} /> | ||
<ColoredDiv | ||
color='purple' | ||
direction='top' | ||
height={14} | ||
width={8} | ||
rotateZ={-35} | ||
className='rounded-full' | ||
/> | ||
<ColoredDiv | ||
color='red' | ||
direction='bottom' | ||
height={16} | ||
width={12} | ||
rotateZ={45} | ||
className='rounded-full' | ||
/> | ||
<ColoredDiv | ||
color='yellow' | ||
direction='bottom' | ||
height={14} | ||
width={8} | ||
rotateZ={45} | ||
className='rounded-xl' | ||
/> | ||
</div> | ||
</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
Oops, something went wrong.