-
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.
- Loading branch information
1 parent
c375301
commit f3cd135
Showing
24 changed files
with
796 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,28 @@ | ||
import UniversityCard from '@/components/molecules/UniversityCard' | ||
import LeftNavbar from '@/components/organisms/LeftNavbar' | ||
import UserPostContainer from '@/components/organisms/UserPostContainer' | ||
import React from 'react' | ||
|
||
export default function Timeline() { | ||
return ( | ||
<div className="flex h-screen gap-8 py-8 px-4"> | ||
<div className="w-1/5 hidden md:block"> | ||
<LeftNavbar /> | ||
</div> | ||
<div className="w-3/5"> | ||
<UniversityCard | ||
universityLogo={''} | ||
universityName={'Lorem University'} | ||
isAiPowered={true} | ||
joinedSince={'07/12/23'} | ||
description={ | ||
'Official community page for Lorem University. For inquiries contact the Human Resources Department in B-Wing of Northern Campus.' | ||
} | ||
memberCount={200} | ||
/> | ||
<UserPostContainer /> | ||
</div> | ||
<div className="w-1/5 rounded-2xl shadow-2xl bg-white hidden lg:block"></div> | ||
</div> | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 @@ | ||
import React, { ReactNode, HTMLAttributes } from 'react' | ||
|
||
interface TitleProps extends HTMLAttributes<HTMLHeadingElement> { | ||
children: ReactNode | ||
} | ||
|
||
export default function Card({ children, className = '', ...rest }: TitleProps) { | ||
return ( | ||
<div className={`relative z-10 shadow-2xl bg-white py-8 ${className}`} {...rest}> | ||
{children} | ||
</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,4 @@ | ||
.group-search-input::placeholder { | ||
font-size: 14px; | ||
font-weight: 400; | ||
} |
Oops, something went wrong.