Skip to content

Commit

Permalink
update profile resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Renstrio24p committed Jul 3, 2023
1 parent 65be07a commit e0119af
Show file tree
Hide file tree
Showing 27 changed files with 398 additions and 272 deletions.
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Pure Javascript.">
<link rel="icon" type="image/x-icon" href="./src/images/javascript.webp">
<link rel="icon" type="image/x-icon" href="./src/images/wareng.webp">
<script src="https://kit.fontawesome.com/6b203b1712.js" crossorigin="anonymous"></script>
<title>Waren Gador</title>
<script defer src="webpack.bundle.js"></script></head>
Expand Down
16 changes: 16 additions & 0 deletions dist/src/components/Home/functions/type.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import Typed from "typed.js";

export default function typeJS(){
const typed = new Typed('#type-text', {
strings: [`I'm a Front-End Developer`,
`I'm building React projects.`,
`I'm building Typescript \nand Javascript Projects.`,
`I'm a template creator of React,\n Javascript , typescript using Webpack `
],
typeSpeed: 20,
backSpeed: 5,
smartBackspace: true,
loop: true,
contentType: 'html'
});
}
13 changes: 13 additions & 0 deletions dist/src/components/Home/projects.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { style_main } from "../../start";

export default function Project(Proj){

Proj.innerHTML = (
`
<div class=${style_main('proj-container')}>
<h1>Rendered Project</h1>
</div>
`
)

}
13 changes: 12 additions & 1 deletion dist/src/components/rightbar/rightlist.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { style_right } from "../../start";

export default function RightbarList(RList){

Expand All @@ -14,9 +15,19 @@ export default function RightbarList(RList){
<li>
<p>item 3</p>
</li>
<li>
<div>
<div>Templates Stacks</div>
<div>
<a href='#0' class=${style_right('')} aria-label='standalone-react'>Standalone-React</a>
<a href='#0' class=${style_right('')} aria-label='standalone-react-typescript'>Standalone-React Typescript</a>
<a href='#0' class=${style_right('')} aria-label='standalone-Typescript'>Standalone-TypescriptES10</a>
<a href='#0' class=${style_right('')} aria-label='standalone-Javascript'>Standalone-JavascriptES10</a>
</div>
</div>
</li>
</ul>
`

)

}
2 changes: 1 addition & 1 deletion dist/src/components/sidebar/functions/donut.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export default function DonutFunctions(){
}

animateDonutChart('donut-segment', 'donut-text', 75);
animateDonutChart('donut-segment2', 'donut-text2', 60);
animateDonutChart('donut-segment2', 'donut-text2', 95);

}
Binary file added dist/src/images/st-javascript.webp
Binary file not shown.
Binary file added dist/src/images/st-react-typescript.webp
Binary file not shown.
Binary file added dist/src/images/st-typescript.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/src/images/st-typescript.webp
Binary file not shown.
Binary file modified dist/src/images/wareng.webp
Binary file not shown.
45 changes: 23 additions & 22 deletions dist/src/pages/Home.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
import typeJS from "../components/Home/functions/type";
import Home_Render from "../render/Home/home.render";
import { style_main } from "../start";

export default function HomePage(Home) {
Home.innerHTML = `
<div class=${style_main('home')}>
<div class=${style_main('overlay')}>
<div class=${style_main('profile-home')}>
<h1>Design something Amazing with React!!</h1>
<div class=${style_main('type-line')}>
<span class=${style_main('type-code')} id="type-start">&lt;<p class=${style_main('types')}>type</p>&gt;</span>
<span id="type-text"></span>
<span class=${style_main('type-code')} id="type-end">&lt;<p class=${style_main('types')}>/type</p>&gt;</span>
</div>
<div id='Hire-me'></div>
</div>
<div id='repo'></div>
<div id='services'></div>
<div id='projects'></div>
<footer id='footer'></footer>
</div>
</div>
`;

Home.innerHTML = (
`
<div class=${style_main('home')}>
<div class=${style_main('overlay')}>
<div class=${style_main('profile-home')}>
<h1>Design something Amazing with React!!</h1>
<span>&lt;type&gt;</span>
DOM
<span>&lt;/type&gt;</span>
<div id='Hire-me'></div>
</div>
<div id='repo'></div>
<div id='services'></div>
<footer id='footer'></footer>
</div>
</div>
`
)

Home_Render();

}
Home_Render();
typeJS();
}
4 changes: 4 additions & 0 deletions dist/src/render/Home/home.render.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,28 @@ import FooterContent from "../../components/Footer";
import HireMeContent from "../../components/Home/Hire-me";
import RepoList from "../../components/Home/Repo";
import ServiceList from "../../components/Home/Services";
import Project from "../../components/Home/projects";
import UniqueHash from "../../security/Hashes";

export default function Home_Render(){

const HireMe = document.getElementById('Hire-me'),
Repos = document.getElementById('repo'),
Serve = document.getElementById('services'),
Projects = document.getElementById('projects'),
Footer = document.getElementById('footer');

window.addEventListener('DOMContentLoaded', () => {
HireMe.id = UniqueHash();
Repos.id = UniqueHash();
Serve.id = UniqueHash();
Projects.id = UniqueHash();
Footer.id = UniqueHash();
})

HireMeContent(HireMe);
RepoList(Repos);
ServiceList(Serve);
Project(Projects);
FooterContent(Footer);
}
Empty file added dist/src/routes/main.route.js
Empty file.
17 changes: 17 additions & 0 deletions dist/src/sass/modules/app.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@
color: white;
}

.types {
color: cyan
}

.type-line,.type-code {
display: flex;
}

.type-line {
width: 60%;
}

.home {
width: 100%;
background-image: url("../../images/background.webp");
Expand Down Expand Up @@ -161,3 +173,8 @@
color: #fcfafa;
font-size: 13px;
}

.proj-container {
padding-top: 20px;
color: #fff;
}
Loading

0 comments on commit e0119af

Please sign in to comment.