-
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
1 parent
3396491
commit cc370f6
Showing
21 changed files
with
49 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
frontend/src/app/seminars/Seminar.tsx → frontend/src/app/seminar/Seminar.tsx
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,10 @@ | ||
import React from 'react'; | ||
import StaffHeader from './StaffHeader'; | ||
|
||
export default function Staff() { | ||
return ( | ||
<div className={'flex-col justify-center items-center bg-no-repeat bg-cover bg-center pb-14'}> | ||
<StaffHeader/> | ||
</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,18 @@ | ||
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> | ||
<div className={'font-manrope font-medium text-lg text-[#8A8998]'}> | ||
Overline Goes Here | ||
</div> | ||
<div className={'font-manrope font-bold text-[64px] text-[#1F2B3D] -mt-2'}> | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
import Arrow from './assets/view all arrow.svg'; | ||
import Image from 'next/image'; | ||
|
||
export default function ViewAllButton({ text, width }: { text: string, width?: number }) { | ||
return ( | ||
<button className={'flex justify-center items-center rounded-md m-auto bg-[#0B3678] p-4 mb-3 font-manrope font-bold text-lg'}> | ||
<div> | ||
{text} | ||
</div> | ||
<Image src={Arrow} alt={'view all arrow'} width={width} height={width} className={'ml-5'} /> | ||
</button> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.