-
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.
feat: add empty company details page
- Loading branch information
1 parent
7ea5d08
commit 060b3a6
Showing
2 changed files
with
38 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import Wrapper from "./wrapper"; | ||
|
||
export default function Company() { | ||
return ( | ||
<> | ||
<Wrapper> | ||
<h1 className="mb-[1.5rem] text-[1.5rem] font-bold leading-[1.3] m:text-[2.5rem]"> | ||
Company details | ||
</h1> | ||
</Wrapper> | ||
</> | ||
); | ||
} |
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,25 @@ | ||
import { cn } from "@/lib/utils"; | ||
|
||
export default function Wrapper({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<> | ||
<section | ||
className={cn( | ||
"h-full min-h-[40rem] w-full", | ||
"py-8 m:py-16 lg:py-24", | ||
"relative overflow-x-hidden overflow-y-visible" | ||
)} | ||
> | ||
<div | ||
className={cn( | ||
"min-h-[40rem] max-w-[103rem] px-6", | ||
"pxPage mx-auto", | ||
"grid gap-6 py-[7rem]" | ||
)} | ||
> | ||
{children} | ||
</div> | ||
</section> | ||
</> | ||
); | ||
} |