badass auth success page

This commit is contained in:
talksik
2022-03-31 14:42:38 -04:00
parent 6a22fe48bf
commit 1c25fea726
13 changed files with 152 additions and 118 deletions
+12
View File
@@ -0,0 +1,12 @@
import FullMottoLogo from "../../../components/logo/fullMotto";
export default function Footer() {
return (
<div className="container mx-auto flex justify-between mt-auto items-center">
<span className="ml-20">
<span className="text-zinc-400 text-sm">Wanna chat? </span>
<span className="font-bold text-white">arjunpatel@berkeley.edu</span>
</span>
<FullMottoLogo className="text-center scale-50" />
</div>
);
}
+9
View File
@@ -0,0 +1,9 @@
import HorizontalLogo from "../../../components/logo/horizontal";
export default function Header() {
return (
<div className="container mx-auto p-0 flex flex-row justify-start">
<HorizontalLogo className="scale-[0.5]" />
</div>
);
}