-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
1499816
commit 3a92976
Showing
15 changed files
with
192 additions
and
116 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap"); | ||
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap'); | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
@tailwind utilities; |
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,10 +1,23 @@ | ||
import React from "react"; | ||
import React from 'react'; | ||
import Image from 'next/image'; | ||
|
||
export default function NextPreButton({src, direction, className}: {src: string, direction: 'next' | 'pre', className?: string}) { | ||
export default function NextPreButton({ | ||
src, | ||
direction, | ||
className, | ||
}: { | ||
src: string; | ||
direction: 'next' | 'pre'; | ||
className?: string; | ||
}) { | ||
return ( | ||
<button className={'flex justify-center items-center bg-white rounded-full w-12 h-12 ' + className}> | ||
<Image src={src} alt={direction + ' arrow'} className={'w-7 h-7'}/> | ||
<button | ||
className={ | ||
'flex h-12 w-12 items-center justify-center rounded-full bg-white ' + | ||
className | ||
} | ||
> | ||
<Image src={src} alt={direction + ' arrow'} className={'h-7 w-7'} /> | ||
</button> | ||
) | ||
} | ||
); | ||
} |
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 |
---|---|---|
@@ -1,10 +1,20 @@ | ||
import React from 'react'; | ||
import Image from 'next/image'; | ||
|
||
export default function SeminarLogo({logo, alt}: {logo: string, alt: string}) { | ||
export default function SeminarLogo({ | ||
logo, | ||
alt, | ||
}: { | ||
logo: string; | ||
alt: string; | ||
}) { | ||
return ( | ||
<button className={'flex justify-center items-center bg-white bg-opacity-40 rounded-full mt-2 w-7 h-7'}> | ||
<Image src={logo} alt={alt} width={13} height={13}/> | ||
<button | ||
className={ | ||
'mt-2 flex h-7 w-7 items-center justify-center rounded-full bg-white bg-opacity-40' | ||
} | ||
> | ||
<Image src={logo} alt={alt} width={13} height={13} /> | ||
</button> | ||
) | ||
} | ||
); | ||
} |
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,23 +1,25 @@ | ||
import React from "react"; | ||
import PreArrow from "./assets/pre arrow.svg"; | ||
import NextArrow from "./assets/next arrow.svg"; | ||
import NextPreButton from "./NextPreButton"; | ||
import React from 'react'; | ||
import PreArrow from './assets/pre arrow.svg'; | ||
import NextArrow from './assets/next arrow.svg'; | ||
import NextPreButton from './NextPreButton'; | ||
|
||
export default function SeminarHeader() { | ||
return ( | ||
<div className={'flex justify-between items-center px-32 pt-20'}> | ||
<div className={'flex items-center justify-between px-32 pt-20'}> | ||
<div> | ||
<div className={'font-manrope font-medium text-lg text-white opacity-60'}> | ||
<div | ||
className={'font-manrope text-lg font-medium text-white opacity-60'} | ||
> | ||
Overline Goes Here | ||
</div> | ||
<div className={'font-manrope font-bold text-[64px] text-white -mt-2'}> | ||
<div className={'-mt-2 font-manrope text-[64px] font-bold text-white'}> | ||
Seminars | ||
</div> | ||
</div> | ||
<div className={'flex'}> | ||
<NextPreButton src={PreArrow} direction={'pre'}/> | ||
<NextPreButton src={NextArrow} direction={'next'} className={'ml-4'}/> | ||
<NextPreButton src={PreArrow} direction={'pre'} /> | ||
<NextPreButton src={NextArrow} direction={'next'} className={'ml-4'} /> | ||
</div> | ||
</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
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,18 +1,20 @@ | ||
import React from "react"; | ||
import React from 'react'; | ||
import ViewAllButton from './ViewAllButton'; | ||
|
||
export default function StaffHeader() { | ||
return ( | ||
<div className={'flex justify-between items-center px-32 pt-20'}> | ||
<div className={'flex items-center justify-between px-32 pt-20'}> | ||
<div> | ||
<div className={'font-manrope font-medium text-lg text-[#8A8998]'}> | ||
<div className={'font-manrope text-lg font-medium text-[#8A8998]'}> | ||
Overline Goes Here | ||
</div> | ||
<div className={'font-manrope font-bold text-[64px] text-[#1F2B3D] -mt-2'}> | ||
<div | ||
className={'-mt-2 font-manrope text-[64px] font-bold text-[#1F2B3D]'} | ||
> | ||
Staff Members | ||
</div> | ||
</div> | ||
<ViewAllButton text={'View All'} width={20} /> | ||
</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
Oops, something went wrong.