Add Prettier. Remove unused Button component

This commit is contained in:
Lennon Puldagrealy
2022-12-18 11:14:41 -08:00
parent 278189d015
commit ed47bcaa7a
21 changed files with 374 additions and 353 deletions
+3 -4
View File
@@ -1,5 +1,4 @@
import Link from 'next/link'
import Link from "next/link";
function BackgroundIllustration(props) {
return (
@@ -15,7 +14,7 @@ function BackgroundIllustration(props) {
<circle cx={545} cy={545} r="416.5" />
<circle cx={545} cy={545} r="352.5" />
</svg>
)
);
}
export function AuthLayout({ title, subtitle, children }) {
@@ -43,5 +42,5 @@ export function AuthLayout({ title, subtitle, children }) {
</div>
</div>
</main>
)
);
}