- Learn The Core Concepts Of Blockchain Technology, Including Distributed Ledgers, Consensus Mechanisms,
- And Cryptography.
-
-
-
- Beginner
-
-
-
- 30min
-
-
-
- 4 Lessons
+ {/* Main Content */}
+
+
+ {/* Left Sidebar */}
+
+
+
+
+
+
+ View Profile
+
+
-
-
-
- Lesson Content
-
-
- Resources
-
-
-
-
-
-
Introduction to Crypto
-
- Understanding The Basics Of Blockchain Technology And Its Potential Applications.
-
+ {/* Main Content Area */}
+
+
+
+
What is crypto?
+
+ Learn The Core Concepts Of Blockchain Technology, Including Distributed Ledgers, Consensus Mechanisms,
+ And Cryptography.
+
+
+
+ Beginner
+
+
+
+ 30min
-
-
- Cryptocurrency Is A Digital Form Of Money That Uses Blockchain Technology And Encryption To Secure
- Transactions. Bitcoin, Ethereum, And Starknet Are Popular Examples. Unlike Traditional Currencies,
- It's Not Controlled By A Central Authority.
-
+
+
+ 4 Lessons
-
-
-
-
-
-
-
-
-
Additional Resources
-
-
Blockchain Technology Whitepaper
-
Cryptocurrency Market Analysis
-
Smart Contract Development Guide
-
-
-
+
-
-
-
- 1
-
NFT BADGE
-
-
-
+
+
+
+ Lesson Content
+
+
+ Resources
+
+
+
+
+
+
Introduction to Crypto
+
+ Understanding The Basics Of Blockchain Technology And Its Potential Applications.
+
+
+
+
+ Cryptocurrency Is A Digital Form Of Money That Uses Blockchain Technology And Encryption To Secure
+ Transactions. Bitcoin, Ethereum, And Starknet Are Popular Examples. Unlike Traditional Currencies,
+ It's Not Controlled By A Central Authority.
+
+
+
+
+
-
-
-
-
+
+
+
+
Additional Resources
+
+
Blockchain Technology Whitepaper
+
Cryptocurrency Market Analysis
+
Smart Contract Development Guide
+
+
+
+
-
-
It takes you to this point
-
-
+
+
+
+ 1
+
NFT BADGE
+
+
+
+
+
+
+
+
+
- {/* Right Sidebar */}
-
-
-
-
Course Progress
-
+
+
It takes you to this point
-
- Over All Progress
-
- 0%
+
+
+ {/* Right Sidebar */}
+
+
+
+
Course Progress
+
+
+
+ Over All Progress
+
+ 0%
+
-
- {/* */}
-
-
Course Content
-
- {[1, 2, 3, 4].map((index) => (
-
-
- {index}
-
-
-
Introduction to Crypto
-
- Understanding The Basics Of Blockchain Technology And Its Potential Applications.
-
+
+
Course Content
+
+ {[1, 2, 3, 4].map((index) => (
+
+
+ {index}
+
+
+
Introduction to Crypto
+
+ Understanding The Basics Of Blockchain Technology And Its Potential Applications.
+
+
-
- ))}
+ ))}
+
-
-
-
+
+
+
)
}
diff --git a/frontend/src/app/signin/page.tsx b/frontend/src/app/signin/page.tsx
index 4e680ae5..1c179de2 100644
--- a/frontend/src/app/signin/page.tsx
+++ b/frontend/src/app/signin/page.tsx
@@ -1,17 +1,18 @@
-"use client"
-import { useState } from 'react';
-import type { NextPage } from 'next';
-import Head from 'next/head';
-import Link from 'next/link';
-import Image from 'next/image';
-import { Github } from 'lucide-react';
+"use client";
+import { useState } from "react";
+import type { NextPage } from "next";
+import Head from "next/head";
+import Link from "next/link";
+import Image from "next/image";
+import { Github } from "lucide-react";
+import PageBackground from "@/component/PageBackground";
const SignUp: NextPage = () => {
const [formData, setFormData] = useState({
- firstName: '',
- lastName: '',
- email: '',
- password: '',
+ firstName: "",
+ lastName: "",
+ email: "",
+ password: "",
});
const handleChange = (e: React.ChangeEvent) => {
@@ -25,7 +26,7 @@ const SignUp: NextPage = () => {
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
// Handle form submission logic here
- console.log('Form submitted:', formData);
+ console.log("Form submitted:", formData);
};
return (
@@ -34,135 +35,137 @@ const SignUp: NextPage = () => {
Sign Up
-
-
-
-
Sign Up Account
-
Entre you date to create your account
-
-
-
- {/* OAuth Buttons */}
-
-
-
+
+
+
+
+
Sign Up Account
+
Entre you date to create your account
- {/* Divider */}
-
-
-
+
+ {/* OAuth Buttons */}
+
+
+
-
- or
+
+ {/* Divider */}
+
+
+
+
+
+ or
+
-
- {/* Sign Up Form */}
-
-
+ {/* Sign Up Form */}
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
- Last Name *
+
+ Password *
+
Must be at least 8 character Long
-
-
-
- Email *
-
-
-
+
+
-
-
- Password *
-
-
-
Must be at least 8 character Long
+
+
+ Already have an Account?{" "}
+
+ Login
+
+
-
-
-
-
-
-
- Already have an Account?{' '}
-
- Login
-
-
-
-
+
+
>
);
};
diff --git a/frontend/src/component/PageBackground.tsx b/frontend/src/component/PageBackground.tsx
index 09a4514f..6b97b07d 100644
--- a/frontend/src/component/PageBackground.tsx
+++ b/frontend/src/component/PageBackground.tsx
@@ -8,51 +8,55 @@ type PageBackgroundProps = {
export default function PageBackground({ children }: PageBackgroundProps) {
return (
-