generated from ImJustLucas/Next-13-Boilerplate
-
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.
Refactor contact and what pages to include a WorkInProgress component
- Loading branch information
1 parent
45ea90e
commit d8f0c1d
Showing
3 changed files
with
26 additions
and
1 deletion.
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,3 +1,11 @@ | ||
import { TypographyH2 } from "@/components/typography"; | ||
import { WorkInProgress } from "@/components/work-in-progress"; | ||
|
||
export default function What() { | ||
return <div className="">contact page</div>; | ||
return ( | ||
<div className=""> | ||
<TypographyH2 border={false}>Contact me</TypographyH2> | ||
<WorkInProgress /> | ||
</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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import { TypographyH2 } from "@/components/typography"; | ||
import { WorkInProgress } from "@/components/work-in-progress"; | ||
|
||
export default function What() { | ||
return ( | ||
<div className=""> | ||
<TypographyH2 border={false}>What i've done ?</TypographyH2> | ||
<WorkInProgress /> | ||
</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,15 @@ | ||
import { Hammer } from "lucide-react"; | ||
|
||
export const WorkInProgress = () => { | ||
return ( | ||
<div className="md:w-2/3 w-full"> | ||
<div className="flex items-center my-8 space-x-2"> | ||
<h2 className="text-3xl font-bold text-center">Work in Progress</h2> | ||
<Hammer className="h-6 w-6 text-primary" /> | ||
</div> | ||
<p className=" text-muted-foreground mb-8"> | ||
This page is under construction. Please check back later. | ||
</p> | ||
</div> | ||
); | ||
}; |