-
Notifications
You must be signed in to change notification settings - Fork 92
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
3999a46
commit 4f11956
Showing
25 changed files
with
274 additions
and
285 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
import { cn } from "@/lib/utils"; | ||
import { DetailedHTMLProps, HTMLAttributes } from "react"; | ||
|
||
export function AboutDescription (props: DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>) { | ||
|
||
return ( | ||
<p {...props} className={cn('mt-2 leading-8 tracking-wide', props.className)} /> | ||
) | ||
} | ||
export function AboutDescription( | ||
props: DetailedHTMLProps< | ||
HTMLAttributes<HTMLParagraphElement>, | ||
HTMLParagraphElement | ||
>, | ||
) { | ||
return ( | ||
<p | ||
{...props} | ||
className={cn("mt-2 leading-8 tracking-wide", props.className)} | ||
/> | ||
); | ||
} |
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,19 @@ | ||
import { cn } from "@/lib/utils"; | ||
import { DetailedHTMLProps, HTMLAttributes } from "react"; | ||
|
||
export function AboutHeading (props: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>) { | ||
|
||
return ( | ||
<h3 {...props} className={cn('text-2xl font-bold tracking-wide mt-3 mb-2', props.className)} /> | ||
) | ||
} | ||
export function AboutHeading( | ||
props: DetailedHTMLProps< | ||
HTMLAttributes<HTMLHeadingElement>, | ||
HTMLHeadingElement | ||
>, | ||
) { | ||
return ( | ||
<h3 | ||
{...props} | ||
className={cn( | ||
"text-2xl font-bold tracking-wide mt-3 mb-2", | ||
props.className, | ||
)} | ||
/> | ||
); | ||
} |
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
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
|
||
export default function AboutChangelog() { | ||
return ( | ||
<iframe | ||
className="min-h-[70vh] w-full" | ||
src="https://holodexnet.github.io/Holodex/CHANGELOG.html" | ||
/> | ||
return ( | ||
<iframe | ||
className="min-h-[70vh] w-full" | ||
src="https://holodexnet.github.io/Holodex/CHANGELOG.html" | ||
/> | ||
); | ||
} | ||
} |
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
Oops, something went wrong.