Skip to content

Commit a33c5c4

Browse files
committed
First commit
0 parents  commit a33c5c4

14 files changed

+6078
-0
lines changed

.eslintrc.cjs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:react/recommended',
7+
'plugin:react/jsx-runtime',
8+
'plugin:react-hooks/recommended',
9+
],
10+
ignorePatterns: ['dist', '.eslintrc.cjs'],
11+
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
12+
settings: { react: { version: '18.2' } },
13+
plugins: ['react-refresh'],
14+
rules: {
15+
'react-refresh/only-export-components': [
16+
'warn',
17+
{ allowConstantExport: true },
18+
],
19+
},
20+
}

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Frontend Mentor - QR code component solution
2+
3+
This is a solution to the [QR code component challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H). Frontend Mentor challenges help you improve your coding skills by building realistic projects.
4+
5+
## Table of contents
6+
7+
- [Overview](#overview)
8+
- [Screenshot](#screenshot)
9+
- [Links](#links)
10+
- [My process](#my-process)
11+
- [Built with](#built-with)
12+
- [Author](#author)
13+
14+
## Overview
15+
16+
### Screenshot
17+
18+
![screenshot](./public/screenshot.png)
19+
20+
### Links
21+
22+
- Solution URL: [Frontend Mentor Solution](https://your-solution-url.com)
23+
- Live Site URL: [GitHub Pages](https://your-live-site-url.com)
24+
25+
## My process
26+
27+
### Built with
28+
29+
- Semantic HTML5 markup
30+
- CSS custom properties
31+
- Flexbox
32+
- [Vite](https://vitejs.dev/) - Vite
33+
- [React](https://reactjs.org/) - JS library
34+
35+
## Author
36+
37+
- Website - [Ariel Curtido - Eirete](https://eirete.com/)
38+
- Frontend Mentor - [@acurtido](https://www.frontendmentor.io/profile/acurtido)
39+
- Github - [acurtido](https://github.com/acurtido)
40+

index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Frontend Mentor | QR code component</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.jsx"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)