Skip to content

Commit

Permalink
fix: import errors in sign up
Browse files Browse the repository at this point in the history
  • Loading branch information
kleenpulse committed Jul 24, 2024
1 parent 00a1a49 commit fd37368
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
10 changes: 10 additions & 0 deletions public/signup/icons/bi_facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/signup/icons/flat-color-icons_google.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions src/app/(auth-routes)/sign-up/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import Image from "next/image";
import Link from "next/link";

import FacebookIcon from "../../../public/signup/icons/bi_facebook.svg";
import GoogleIcon from "../../../public/signup/icons/flat-color-icons_google.svg";
import SignupForm from "./_component/SignupForm";

const page = () => {
Expand All @@ -26,7 +24,7 @@ const page = () => {
<div className="mt-6 flex flex-col items-center gap-2 text-center sm:flex-row md:gap-[18px]">
<button className="flex w-full flex-row items-center justify-center gap-2.5 rounded-lg border border-border px-4 py-3 md:w-fit md:px-8 md:py-4">
<Image
src={GoogleIcon}
src={"/signup/icons/flat-color-icons_google.svg"}
alt="Google Icon"
width={24}
height={24}
Expand All @@ -37,7 +35,7 @@ const page = () => {
</button>
<button className="flex w-full flex-row items-center justify-center gap-2.5 rounded-lg border border-border px-4 py-3 md:w-fit md:px-8 md:py-4">
<Image
src={FacebookIcon}
src={"/signup/icons/bi_facebook.svg"}
alt="Facebook Icon"
width={24}
height={24}
Expand Down

0 comments on commit fd37368

Please sign in to comment.