-
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.
- Loading branch information
1 parent
7d65b97
commit 7d7dc7d
Showing
13 changed files
with
277 additions
and
40 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
Binary file not shown.
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 |
---|---|---|
@@ -1,9 +1,99 @@ | ||
import React from 'react' | ||
import React from "react"; | ||
|
||
const About = () => { | ||
return ( | ||
<div>About</div> | ||
) | ||
} | ||
<div className="h-96" id='about'> | ||
<div className="text-center mb-10"> | ||
<span className="text-2xl md:text-5xl text-amber-500 font-extrabold"> | ||
My Skillsets | ||
</span> | ||
</div> | ||
<div className="mx-8 md:mx-20"> | ||
<div className="text-md md:text-2xl text-green-500 mb-4"> | ||
{" "} | ||
My skill-set include building responsive web apps in ReactJS and | ||
projects using HTML, CSS and Vanilla JS. I am familiar with Git, | ||
Github and Web Hosting. I have also created projects using MERN stack | ||
</div> | ||
<div className="text-md md:text-2xl text-green-500 mb-2"> | ||
Technoloies I know | ||
</div> | ||
<div className="flex flex-row md:gap-8 gap-1"> | ||
<a href="http://www.w3.org/html/logo/"> | ||
<img | ||
src="https://www.w3.org/html/logo/badge/html5-badge-h-solo.png" | ||
width="63" | ||
height="64" | ||
alt="HTML5 Powered" | ||
title="HTML5 Powered" | ||
/> | ||
</a> | ||
<a href="https://getbootstrap.com" target="_blank" rel="noreferrer"> | ||
{" "} | ||
<img | ||
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/bootstrap/bootstrap-plain-wordmark.svg" | ||
alt="bootstrap" | ||
width="63" | ||
height="64" | ||
/>{" "} | ||
</a>{" "} | ||
<a | ||
href="https://www.w3schools.com/css/" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
{" "} | ||
<img | ||
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg" | ||
alt="css3" | ||
width="63" | ||
height="64" | ||
/>{" "} | ||
</a>{" "} | ||
<a href="https://www.figma.com/" target="_blank" rel="noreferrer"> | ||
{" "} | ||
<img | ||
src="https://www.vectorlogo.zone/logos/figma/figma-icon.svg" | ||
alt="figma" | ||
width="63" | ||
height="64" | ||
/>{" "} | ||
</a>{" "} | ||
<a href="https://git-scm.com/" target="_blank" rel="noreferrer"> | ||
{" "} | ||
<img | ||
src="https://www.vectorlogo.zone/logos/git-scm/git-scm-icon.svg" | ||
alt="git" | ||
width="63" | ||
height="64" | ||
/>{" "} | ||
</a>{" "} | ||
<a | ||
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
{" "} | ||
<img | ||
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg" | ||
alt="javascript" | ||
width="63" | ||
height="64" | ||
/>{" "} | ||
</a>{" "} | ||
<a href="https://reactjs.org/" target="_blank" rel="noreferrer"> | ||
{" "} | ||
<img | ||
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/react/react-original-wordmark.svg" | ||
alt="react" | ||
width="63" | ||
height="64" | ||
/>{" "} | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default About | ||
export default About; |
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,27 @@ | ||
import React from "react"; | ||
|
||
const Blog = () => { | ||
return ( | ||
<div className="h-screen md:h-screen mt-10 md:mt-15 " id='blog'> | ||
<div className="text-center md:mb-20 mb-10"> | ||
<span className="text-2xl md:text-5xl text-amber-500 font-extrabold "> | ||
Blog | ||
</span> | ||
</div> | ||
<div className="flex flex-col gap-5 md:gap-8 items-center md:flex-row md:justify-center"> | ||
<div className="relative"> | ||
<div className="bg-gray-400 shadow-md p-4 absolute top-4 left-4 z-0 w-full md:h-72 h-60 rounded-xl"></div> | ||
<a href="https://dgsoftwaredev.hashnode.dev/optimizing-frontend-performance-techniques-for-faster-websites" className="text cursor-pointer"> | ||
<div className="text-black border-2 h-60 md:h-72 relative z-10 bg-blue-500 p-4 rounded-xl w-72"> | ||
<p className="text-2xl md:text-4xl font-bold"> | ||
Optimizing Frontend Performance Techniques for faster websites | ||
</p> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Blog; |
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,11 @@ | ||
import React from 'react' | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className='h-10 bg-amber-400 mt-5 text-center hidden md:flex'> | ||
<span className='my-auto'>Made with love by deepak</span> | ||
</div> | ||
) | ||
} | ||
|
||
export default Footer |
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,26 @@ | ||
import React from 'react' | ||
|
||
const Project = ({name,desc,link,code}) => { | ||
return ( | ||
<div className='text-amber-300 border-2 md:h-96 h-80 md:w-72 w-72 rounded-xl '> | ||
<div className='md:h-8 h-6 border-b-2 flex items-center '> | ||
<div className='bg-red-500 rounded-full h-2 w-2 ml-3'></div> | ||
<div className='bg-amber-400 rounded-full h-2 w-2 ml-3'></div> | ||
<div className='bg-green-500 rounded-full h-2 w-2 ml-3'></div> | ||
</div> | ||
|
||
<div className='flex flex-col '> | ||
<div className='text-center px-5 py-2'> | ||
<span className='md:text-2xl text-xl font-extrabold'>{name}</span> | ||
<p className='text-sm md:text-md mt-5'>{desc}</p> | ||
</div> | ||
<div className=' md:mt-5 mt-2 text-center '> | ||
<a href={link}><span className="transition-all duration-300 hover:bg-green-500 font-extrabold hover:text-black border-r-4 border-b-4 border px-5 py-2 rounded-lg text-green-500" >Live</span></a> | ||
<a href={code}><span className="transition-all duration-300 hover:bg-blue-500 font-extrabold hover:text-black border-r-4 border-b-4 border px-5 py-2 rounded-lg ml-3 text-blue-500" >Code</span></a> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Project |
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
Binary file not shown.
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