finish homepage

This commit is contained in:
Surjith S M
2022-11-05 21:25:04 +05:30
parent bfb5c99b5a
commit 7e64dc87e6
11 changed files with 217 additions and 80 deletions

View File

@@ -2,7 +2,7 @@
interface Props {
href: string;
size?: string;
style?: string;
style?: "outline" | "primary" | "inverted";
class?: string;
[x: string]: any;
}
@@ -24,6 +24,7 @@ const styles = {
outline: "border-2 border-black hover:bg-black text-black hover:text-white",
primary:
"bg-black text-white hover:bg-slate-900 border-2 border-transparent",
inverted: "bg-white text-black border-2 border-transparent",
};
---