🐎 perf(improve): cleanup manual actions

This commit is contained in:
Abhiraj Roy
2024-06-05 12:20:42 +05:30
parent 9104d4913b
commit 501573f68f
3 changed files with 61 additions and 13 deletions

View File

@@ -76,7 +76,7 @@
</div> </div>
<!-- skip --> <!-- skip -->
<NuxtLink id="skip-btn" to="/about-me" class="font-fira_retina flex hover:bg-white/20"> <NuxtLink id="skip-btn" to="/about-me" class="font-fira_retina flex hover:bg-white/20">
skip skip?
</NuxtLink> </NuxtLink>
</div> </div>

View File

@@ -27,7 +27,7 @@
"icon": "icons/info-personal.svg", "icon": "icons/info-personal.svg",
"info": { "info": {
"bio": { "bio": {
"title": "bio", "title": "About",
"description": "<br> About me <br> I have 5 years of experience in web development lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <br><br> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat officia deserunt mollit anim id est laborum." "description": "<br> About me <br> I have 5 years of experience in web development lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <br><br> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat officia deserunt mollit anim id est laborum."
}, },
"interests": { "interests": {
@@ -64,8 +64,8 @@
"direct": { "direct": {
"title": "contacts", "title": "contacts",
"sources": { "sources": {
"email": "user@gmail.com", "email": "hello@snigdhaos.org",
"phone": "+3598246359" "phone": "N/A"
} }
}, },
"social": { "social": {
@@ -74,6 +74,11 @@
"url": "https://github.com/", "url": "https://github.com/",
"user": "Snigdha-OS" "user": "Snigdha-OS"
}, },
"download": {
"title": "Download",
"url": "#",
"user": "#"
},
"facebook": { "facebook": {
"title": "Facebook", "title": "Facebook",
"url": "https://facebook.com/", "url": "https://facebook.com/",

View File

@@ -21,19 +21,20 @@
<div id="info"> <div id="info">
<span class="action"> <span class="action">
// complete the game to continue // complete the game to continue
or skip to see about "Snigdha OS"
</span> </span>
<span :class="{hide: isMobile}"> <span :class="{hide: isMobile}">
// you can also see it on my Github page // source code can be found on
</span> </span>
<span :class="{hide: !isMobile}"> <span :class="{hide: !isMobile}">
// find my profile on Github: // browse the source code:
</span> </span>
<p class="code"> <p class="code">
<span class="identifier"> <span class="identifier">
const const
</span> </span>
<span class="variable-name"> <span class="variable-name">
githubLink github
</span> </span>
<span class="operator"> <span class="operator">
= =
@@ -42,6 +43,48 @@
"https://github.com/{{ config.public.dev.contacts.social.github.user }}" "https://github.com/{{ config.public.dev.contacts.social.github.user }}"
</a> </a>
</p> </p>
<p class="mb-6"></p>
<span :class="{hide: isMobile}">
// download Snigdha OS
</span>
<span :class="{hide: !isMobile}">
// we recommend you to download the <b>ISO</b> file on PC
</span>
<p class="code">
<span class="identifier">
const
</span>
<span class="variable-name">
download
</span>
<span class="operator">
=
</span>
<a class="string" :href="'https://download.com/' + config.public.dev.contacts.social.download.user">
"https://download.com/{{ config.public.dev.contacts.social.download.user }}"
</a>
</p>
<p class="mb-6"></p>
<span :class="{hide: isMobile}">
// having problem with installation?
</span>
<span :class="{hide: !isMobile}">
// having problem with installation?
</span>
<p class="code">
<span class="identifier">
const
</span>
<span class="variable-name">
docs
</span>
<span class="operator">
=
</span>
<a class="string" :href="'https://download.com/' + config.public.dev.contacts.social.download.user">
"https://download.com/{{ config.public.dev.contacts.social.download.user }}"
</a>
</p>
</div> </div>
</section> </section>
@@ -122,7 +165,7 @@ function handleResize() {
font-size: 58px; font-size: 58px;
line-height: 1; line-height: 1;
color: #E5E9F0; color: #E5E9F0;
font-family: 'Fira Code Regular'; font-family: 'Fira Code Bold';
padding-top: 1rem; /* 16px */ padding-top: 1rem; /* 16px */
padding-bottom: 1rem; /* 16px */ padding-bottom: 1rem; /* 16px */
} }
@@ -130,7 +173,7 @@ function handleResize() {
#hello .head h2, #hello .head .diple { #hello .head h2, #hello .head .diple {
font-size: 32px; font-size: 32px;
line-height: 1; line-height: 1;
color: #4D5BCE; color: #FF7F53;
font-family: 'Fira Code Retina'; font-family: 'Fira Code Retina';
} }
@@ -147,7 +190,7 @@ function handleResize() {
font-size: 14px; font-size: 14px;
line-height: 1; line-height: 1;
color: #607B96; color: #607B96;
font-family: 'Fira Code Retina'; font-family: 'Fira Code Medium';
padding-bottom: 1rem; /* 16px */ padding-bottom: 1rem; /* 16px */
} }
@@ -157,7 +200,7 @@ function handleResize() {
} }
.code .identifier { .code .identifier {
color: #4D5BCE; color: #FF7F53;
} }
.code .variable-name { .code .variable-name {
@@ -195,7 +238,7 @@ function handleResize() {
border-radius: 0% 0% 50% 50%; border-radius: 0% 0% 50% 50%;
rotate: 10deg; rotate: 10deg;
filter: blur(70px); filter: blur(70px);
background: radial-gradient(circle at 50% 50%,rgba(77, 91, 206, 1), rgba(76, 0, 255, 0)); background: radial-gradient(circle at 50% 50%,rgba(255, 127, 83, 1), rgba(76, 0, 255, 0));
opacity: 0.5; opacity: 0.5;
z-index: 10; z-index: 10;
} }
@@ -214,7 +257,7 @@ function handleResize() {
} }
#info { #info {
font-size: 14px; font-size: 16px;
} }
/* Typewrite Animation */ /* Typewrite Animation */