deepsite-project / index.html
borreooo's picture
Build a React.js frontend for a blockchain-based certificate verification system with two main portals: University Portal and Employer Portal (use React Router for navigation).
a3f1e66 verified
Raw
History Blame Contribute Delete
1.41 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrustChain - Blockchain Certificate Verification</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f7fa;
color: #333;
}
#root {
min-height: 100vh;
display: flex;
flex-direction: column;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="https://unpkg.com/react@17/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://unpkg.com/react-router-dom@5/dist/react-router-dom.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/qrcode.react@1.0.1/dist/index.js"></script>
<script src="https://unpkg.com/framer-motion@6/dist/framer-motion.js"></script>
<script src="https://unpkg.com/@chakra-ui/react@1.8.6/dist/chakra-ui-react.min.js"></script>
<script type="text/babel" src="App.jsx"></script>
</body>
</html>