-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit with updated skills and navigation
- Loading branch information
1 parent
b5debc8
commit badf931
Showing
26 changed files
with
553 additions
and
90 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from 'react'; | ||
|
||
|
||
import './Style.css'; | ||
const AboutMe = () => { | ||
return ( | ||
<div class="Container1"> | ||
<div className="container2"> | ||
<h1>Get to <span class="highlight">Know</span> About Me!</h1> | ||
<p>Hi, my name is <span className="highlight">Sanjana</span> and I'm from Gadwal, Telangana.</p> | ||
<p>Currently, I'm a second-year student at <span className="highlight">Scaler School of Technology</span>, where I'm gaining practical knowledge and skills in various computer science concepts.</p> | ||
<p>I <span class="highlight">believe</span> that computer science is not just about theoretical concepts but also about practical learning. It's about understanding how algorithms work, solving <span className="highlight">real-world problems, </span>, and building innovative solutions.</p> | ||
<p>As a <span className="highlight">web developer</span>, I enjoy creating websites and applications that are both functional and visually appealing.</p> | ||
<p>I'm always open to new collaborations and opportunities where I can apply my skills and contribute to meaningful projects. Feel free to <span className="highlight">connect</span> with me through the links provided in the footer.</p> | ||
</div> | ||
<div class="container3"> | ||
<h2>Education</h2> | ||
<div class="contentss"> | ||
<div class="box"> | ||
<h3>Schooling <span>(2011-2021)</span></h3> | ||
<p>I studied at Kakatiya High School, Gadwal, until my 10th grade.</p> | ||
</div> | ||
<div class="box"> | ||
<br></br> | ||
<h3>Intermediate Education <span>(2021-2023)</span></h3> | ||
<p>I completed my 11th and 12th grades at Resonance, Hyderabad, studying Mathematics, Physics, and Chemistry, while also preparing for competitive exams.</p> | ||
</div> | ||
<div class="box"> | ||
<h3>Under-Graduation <span>(2023-2027)</span></h3> | ||
<p>I am currently pursuing a Computer Science degree at Scaler School of Technology, focusing on improving my skills.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default AboutMe; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* Existing Styles */ | ||
/* <-- About --> */ | ||
.Container1 { | ||
display: flex; | ||
justify-content: space-between; | ||
background-color: #353941; | ||
color: aliceblue; | ||
min-height: 92vh; | ||
} | ||
|
||
.container2 { | ||
padding-right: 20px; | ||
position: relative; | ||
top: 8rem; | ||
left: 8rem; | ||
font-size: 1.11rem; | ||
} | ||
|
||
.highlight { | ||
color: #b093d6; | ||
} | ||
|
||
.container2 p { | ||
line-height: 1.6; | ||
max-width: 100ch; | ||
overflow-wrap: break-word; | ||
} | ||
|
||
.contentss { | ||
display: flex; | ||
flex-direction: column; | ||
padding-left: 10rem; | ||
padding-top: 4rem; | ||
} | ||
|
||
.box { | ||
margin: 10px; | ||
background-color: #26282B; | ||
display: flex; | ||
flex-direction: column; | ||
padding: 7px; | ||
margin: 8px; | ||
margin-left: 5rem; | ||
width: 65%; | ||
height: 30%; | ||
align-items: center; | ||
text-align: center; | ||
} | ||
|
||
|
||
/* Responsive Design */ | ||
|
||
@media (max-width: 768px) { | ||
.container2 { | ||
top: 5rem; | ||
left: 5rem; | ||
} | ||
|
||
.contentss { | ||
padding-left: 5rem; | ||
padding-top: 2rem; | ||
} | ||
|
||
.box { | ||
width: 80%; | ||
margin-left: 0; | ||
} | ||
} | ||
|
||
/* Box Transition */ | ||
|
||
.box { | ||
transition: transform 0.3s ease-in-out; /* Add transition for smooth transformation */ | ||
|
||
} | ||
.box h3{ | ||
color: #b093d6; | ||
} | ||
.box span{ | ||
color:white | ||
} | ||
|
||
.box:hover { | ||
transform: scale(1.05); /* Apply a slight scale on hover */ | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.