diff --git a/public/safedepsign.svg b/public/safedepsign.svg new file mode 100644 index 0000000..df0f5af --- /dev/null +++ b/public/safedepsign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/sign.png b/public/sign.png new file mode 100644 index 0000000..92801bb Binary files /dev/null and b/public/sign.png differ diff --git a/src/app/auth/components/ImageSection.tsx b/src/app/auth/components/ImageSection.tsx index b3eed79..485f8fc 100644 --- a/src/app/auth/components/ImageSection.tsx +++ b/src/app/auth/components/ImageSection.tsx @@ -2,13 +2,14 @@ import React from 'react'; import Image from 'next/image'; const ImageSection: React.FC = () => ( -
- Authentication illustration + Authentication
); diff --git a/src/app/auth/page.tsx b/src/app/auth/page.tsx index 20f4230..4408586 100644 --- a/src/app/auth/page.tsx +++ b/src/app/auth/page.tsx @@ -6,27 +6,38 @@ import { CheckCircle, Shield } from 'lucide-react'; import ImageSection from "./components/ImageSection"; import TextSection from "./components/TextSection"; import AuthButtons from './components/AuthButtons'; +import Image from 'next/image'; const Auth = () => { return ( -
- -
-
- - -
- - +
+ +
+
+ +
-
-
-

Get Started

-

Register for SafeDep Cloud to get API access.

-
- - + + +
+
+
+
+

+ Get Started +
+ + With SafeDep Logo + +

+

+ Register for SafeDep Cloud to get API access. +

+
+ + +
); diff --git a/src/components/MainCard.tsx b/src/components/MainCard.tsx index bf7c5f1..4b662cd 100644 --- a/src/components/MainCard.tsx +++ b/src/components/MainCard.tsx @@ -2,14 +2,15 @@ import React from 'react'; interface MainCardProps { children: React.ReactNode; + className?: string; } -const MainCard: React.FC = ({ children }) => { +const MainCard: React.FC = ({ children, className }) => { return ( -
+
{children}
); }; -export default MainCard; +export default MainCard; \ No newline at end of file