This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Første versjon (MVP) er ferdig
- Loading branch information
Showing
6 changed files
with
41 additions
and
21 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
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,28 @@ | ||
import type { NextComponentType } from "next"; | ||
|
||
const Hero: NextComponentType = () => { | ||
return ( | ||
<div | ||
role="article" | ||
aria-label="Kontainer for animasjoner av introtekst" | ||
id="main-hero" | ||
className="flex flex-col justify-center text-lg"> | ||
<div className="p-4 mt-6 mb-6 bg-white opacity-75"> | ||
<div className="text-black rounded"> | ||
<section role="intro" aria-label="Introduksjonstekst"> | ||
<h1 className="text-5xl text-center p-2">Hei!</h1> | ||
<h2 className="text-2xl text-center p-2"> | ||
Jeg heter Daniel Fjeldstad og er en webutvikler. | ||
</h2> | ||
<h2 className="px-6 mt-4 text-lg md:p-0 lg:p-0 xl:p-0 xl:text-center lg:text-left md:text-center xl:text-2xl lg:text-xl md:text-xl md:mx-auto md:w-full lg:w-2/3 xl:w-full"> | ||
Jeg kan PHP, mySQL, Wordpress, Javascript, Typescript, React, Vue, Redux, Docker, | ||
Photoshop og mye mer. | ||
</h2> | ||
</section> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Hero; |
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