This repository was archived by the owner on Apr 28, 2024. It is now read-only.
generated from DavDeDev/Best-README-Template
-
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
Showing
9 changed files
with
52 additions
and
290 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
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,37 @@ | ||
import {BrowserRouter} from 'react-router-dom'; | ||
|
||
import {About,Contact,Experience,Feedbacks,Hero,Navbar,Tech,Works,StarsCanvas} from './components'; | ||
import { BrowserRouter } from "react-router-dom"; | ||
|
||
import { | ||
About, | ||
Contact, | ||
Experience, | ||
Feedbacks, | ||
Hero, | ||
Navbar, | ||
Tech, | ||
Works, | ||
StarsCanvas, | ||
} from "./components"; | ||
|
||
const App = () => { | ||
return ( | ||
<BrowserRouter> | ||
<div className="relative z-0 bg-primary"> | ||
<div className="bg-hero-pattern bg-cover bg-no-repeat bg-center"> | ||
<Navbar /> | ||
<Hero /> | ||
</div> | ||
<About /> | ||
<Experience /> | ||
<Tech /> | ||
<Works /> | ||
<Feedbacks /> | ||
<div className="relative z-0"> | ||
<Contact /> | ||
<StarsCanvas /> | ||
<div className="relative z-0 bg-primary"> | ||
<div className="bg-hero-pattern bg-cover bg-no-repeat bg-center"> | ||
<Navbar /> | ||
<Hero /> | ||
</div> | ||
<About /> | ||
<Experience /> | ||
<Tech /> | ||
<Works /> | ||
<Feedbacks /> | ||
<div className="relative z-0"> | ||
<Contact /> | ||
<StarsCanvas /> | ||
</div> | ||
</div> | ||
</div> | ||
</BrowserRouter> | ||
); | ||
}; | ||
|
||
export default App; |
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,31 +1,9 @@ | ||
import { motion } from "framer-motion"; | ||
|
||
import { styles } from "../styles"; | ||
import { ComputersCanvas } from "./canvas"; | ||
import React from 'react' | ||
|
||
const Hero = () => { | ||
return ( | ||
<section className="relative w-full h-screen mx-auto"> | ||
<div | ||
className={`${styles.paddingX} absolute inset-0 top-[120px] max-w-7xl mx-auto flex flex-row items-start gap-5`} | ||
> | ||
<div className="flex flex-col justify-center items-center mt-5"> | ||
<div className="w-5 h-5 rounded-full bg-[#915eff]" /> | ||
<div className="w-1 sm:h-80 h-40 violet-gradient" /> | ||
</div> | ||
<div> | ||
<h1 className={`${styles.heroHeadText} text-white`}> | ||
Hi, I'm <span className="text-[#915eff]">David</span> | ||
</h1> | ||
<p className={`${styles.heroSubText} mt-2 text-white-100`}> | ||
I develop nothing | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<ComputersCanvas/> | ||
</section> | ||
); | ||
}; | ||
<div>Hero</div> | ||
) | ||
} | ||
|
||
export default Hero; | ||
export default Hero |
Oops, something went wrong.