-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from Aditya30ag/tonext
I have convert the react code to next js
- Loading branch information
Showing
56 changed files
with
2,373 additions
and
369 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
} | ||
} | ||
} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.handles-container{ | ||
display: flex; | ||
align-items: center; | ||
gap: 10px; | ||
} |
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,42 @@ | ||
import React from 'react' | ||
import './SocialHandles.css'; | ||
import { FaInstagram, FaXTwitter, FaYoutube,FaLinkedin} from "react-icons/fa6"; | ||
|
||
const SocialHandles = () => { | ||
return ( | ||
<div className='handles-container'> | ||
{ | ||
socialHandles.map((handle, index) => ( | ||
<a href={handle.link} target='_blank' className='flex-center icon-wrapper' key={index}> | ||
{handle.icon} | ||
</a> | ||
)) | ||
} | ||
</div> | ||
) | ||
} | ||
|
||
const socialHandles = [ | ||
{ | ||
name:"Instagram", | ||
icon:<FaInstagram />, | ||
link:"https://www.instagram.com/", | ||
}, | ||
{ | ||
name:"Linkedin", | ||
icon:<FaLinkedin/>, | ||
link:"https://www.linkedin.com/in/devanshi-jaiswal-b83774217/", | ||
}, | ||
{ | ||
name:"Twitter", | ||
icon:<FaXTwitter/>, | ||
link:"", | ||
}, | ||
{ | ||
name:"Youtube", | ||
icon:<FaYoutube/>, | ||
link:"httpshttps://www.youtube.com/://www.youtube.com/channel/UCEtnsPZQEd0l1tbr_nDQd5Q?sub_confirmation=1", | ||
}, | ||
]; | ||
|
||
export default SocialHandles |
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 |
---|---|---|
|
@@ -32,4 +32,4 @@ export default function LoadingScreen() { | |
</div> | ||
</div> | ||
); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -74,4 +74,4 @@ const styles = { | |
textDecoration: "none", | ||
fontSize: "1.8rem", | ||
}, | ||
}; | ||
}; |
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
Oops, something went wrong.