-
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
Suswetha
committed
Jun 7, 2024
1 parent
c439e93
commit e86dd95
Showing
8 changed files
with
60 additions
and
7 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
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
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,23 @@ | ||
@keyframes slideIn { | ||
from { | ||
transform: translateX(100%); | ||
opacity: 0; | ||
} | ||
to { | ||
transform: translateX(0); | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.slide-in { | ||
animation: slideIn 1s ease-out; | ||
text-align: center; | ||
color:orangered; | ||
margin-top: 20vh; | ||
} | ||
|
||
.projectContainer{ | ||
background-color: black; | ||
height:100vh; | ||
} | ||
|
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,22 @@ | ||
import './Project.css' | ||
import NavBar from '../components/NavBar'; | ||
import Socialicons from '../components/Socialicons'; | ||
|
||
function Project(){ | ||
return ( | ||
<> | ||
<div className='projectContainer'> | ||
<NavBar/> | ||
<h2 className='slide-in'>Coming Soon</h2> | ||
</div> | ||
<Socialicons | ||
bgColorIcon ={'orange'}/> | ||
</> | ||
|
||
|
||
|
||
) | ||
|
||
} | ||
|
||
export default Project; |