-
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
996b2f4
commit b4df722
Showing
6 changed files
with
208 additions
and
119 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
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,23 @@ | ||
import BlurFade from "@/components/ui/blur-fade"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<div className="fixed bottom-0 start-0 w-full mb-10 px-10 grid grid-cols-3"> | ||
<div className="flex justify-start font-extralight text-sm text-white pt-6"> | ||
<BlurFade delay={0.25 + 1 * 0.05} inView> | ||
by YUNIUS MUJIANTO | ||
</BlurFade> | ||
</div> | ||
<div className="flex flex-col justify-center text-center font-extralight text-sm text-white/80 pt-6"> | ||
<BlurFade delay={0.25 + 2 * 0.05} inView> | ||
Copyright © Yunius Mujianto 2024. All rights reserved. | ||
</BlurFade> | ||
</div> | ||
<div className="flex justify-end font-extralight text-sm text-white pt-6"> | ||
<BlurFade delay={0.25 + 3 * 0.05} inView> | ||
01/12/2024 | ||
</BlurFade> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Navigation from "@/components/ui/navigation"; | ||
|
||
export default function Header() { | ||
return ( | ||
<div className="fixed z-40 top-0 start-0 w-full mt-10 px-10 text-center"> | ||
<div className="inline-block mx-auto py-2 px-6"> | ||
<Navigation /> | ||
</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
Oops, something went wrong.