Last active
March 16, 2023 04:34
-
-
Save Tribhuwan-Joshi/97a525750aee125a40c235f5cd007b7b to your computer and use it in GitHub Desktop.
Smooth scrolling react
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
import React from "react"; | |
function Main() { | |
return ( | |
<div className="flex-1 overflow-auto scroll-smooth "> | |
<section id="about" className="h-[100%] bg-pink-200"></section> | |
<section id="skills" className="h-[100%] bg-pink-400"></section> | |
<section id="projects" className="h-[100%] bg-pink-800"></section> | |
<section id="interests" className="h-[100%] bg-gray-400"></section> | |
<section id="certifications" className="h-[100%] bg-red-200"></section> | |
</div> | |
); | |
} | |
export default Main; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment