Skip to content

Commit cc4baa0

Browse files
authored
Merge pull request #9 from ryfazrin/update/template-to-cv
Update/template to cv
2 parents 167ad0a + 3724f65 commit cc4baa0

File tree

299 files changed

+1494
-79833
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

299 files changed

+1494
-79833
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
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

Lines changed: 0 additions & 11 deletions
This file was deleted.

assets/css/bootstrap-grid.min.css

Lines changed: 0 additions & 7 deletions
This file was deleted.

assets/css/styles.css

Lines changed: 0 additions & 42 deletions
This file was deleted.

assets/img/ryan.jpg

-140 KB
Binary file not shown.

index.html

Lines changed: 5 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,13 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="en" data-theme="winter">
33
<head>
44
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
56
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7-
<title>Ryfazrin</title>
8-
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah&display=swap" rel="stylesheet" />
9-
<link rel="stylesheet" href="assets/css/styles.css" />
7+
<title>CV - Pazrin</title>
108
</head>
11-
129
<body>
13-
<main>
14-
<wired-card>
15-
<h1>Hi, I'm Pazrin 👋</h1>
16-
<p>Muhammad Pazrin Andreanor</p>
17-
</wired-card>
18-
<header>
19-
<div class="hero">
20-
<wired-card>
21-
<p>About me :</p>
22-
<p><wired-link elevation="2" href="https://github.com/ryfazrin">Github</wired-link></p>
23-
<p><wired-link elevation="3" href="https://www.linkedin.com/in/muhammad-pazrin-andreanor-950824159/">LinkedIn</wired-link></p>
24-
<p><wired-link elevation="1" href="hhttps://rywrite.vercel.app/">My Note</wired-link></p>
25-
</wired-card>
26-
<wired-image elevation="3" src="./assets/img/ryan.jpg" width="100px"></wired-image>
27-
</div>
28-
</header>
29-
<section>
30-
<wired-card elevation="4">
31-
<p>🌱 I started programming using php. Typing something in front of the computer makes me addicted to doing it. I used to be a person who was afraid to try new things. 3 years I just played the standard features in php. now i play a website server language in Codeigniter 4, or in Laravel.</p>
32-
</wired-card>
33-
</section>
34-
<section>
35-
<wired-card elevation="3">
36-
<p>⚡ tried the front-end framework, I really like the JavaScript syntax especially Reactjs. React is easy to read and easy to understand for me.</p>
37-
</wired-card>
38-
</section>
39-
<section>
40-
<wired-card elevation="2">
41-
<p>🤔 I'm trying to do a little bit of trouble in the native app section. It amazing for me😄. Java which is transformed into kotlin without a semicolon, it presents shortcodes. or Flutter with simple and easy UI writing for multiplatform.</p>
42-
</wired-card>
43-
</section>
44-
</main>
45-
<footer>
46-
<section>
47-
With ❤ Ryfazrin 2021
48-
</section>
49-
</footer>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.jsx"></script>
5012
</body>
51-
52-
<script type="module" src="https://unpkg.com/wired-elements?module"></script>
53-
<script type="module">
54-
const name = document.querySelector("wired-input");
55-
const button = document.querySelector("wired-button");
56-
button.addEventListener("click", () => {
57-
window.alert(`Hello ${name.value.trim()}!`);
58-
});
59-
</script>
6013
</html>

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "ryfazrin-wiredjs",
3-
"version": "2.0.0",
4-
"description": "",
5-
"main": "index.html",
2+
"name": "ryfazrin.github.io",
3+
"version": "3.0.0-alpha",
4+
"type": "module",
65
"scripts": {
7-
"start": "serve",
8-
"build": "echo This is a static template, there is no bundler or bundling involved!"
6+
"dev": "vite",
7+
"build": "vite build",
8+
"preview": "vite preview"
99
},
10-
"repository": {
11-
"type": "git",
12-
"url": "git+https://github.com/codesandbox-app/static-template.git"
10+
"dependencies": {
11+
"daisyui": "^2.50.2",
12+
"react": "^18.2.0",
13+
"react-dom": "^18.2.0"
1314
},
14-
"keywords": [],
15-
"author": "Ives van Hoorne",
16-
"license": "MIT",
17-
"bugs": {
18-
"url": "https://github.com/codesandbox-app/static-template/issues"
19-
},
20-
"homepage": "https://github.com/codesandbox-app/static-template#readme",
2115
"devDependencies": {
22-
"serve": "^11.2.0"
16+
"@types/react": "^18.0.27",
17+
"@types/react-dom": "^18.0.10",
18+
"@vitejs/plugin-react-swc": "^3.0.0",
19+
"autoprefixer": "^10.4.13",
20+
"postcss": "^8.4.21",
21+
"tailwindcss": "^3.2.7",
22+
"vite": "^4.1.0"
2323
}
2424
}

0 commit comments

Comments
 (0)