21 lines
525 B
Plaintext
21 lines
525 B
Plaintext
package page
|
|
|
|
import "github.com/lorenzhohermuth/portfolio/view/layout"
|
|
import "github.com/lorenzhohermuth/portfolio/view/component"
|
|
|
|
templ ShowHome() {
|
|
@layout.Base(){
|
|
<div class="h-80 bg-[#cdb4f6] flex justify-center items-center">
|
|
Intro
|
|
</div>
|
|
|
|
<div class="h-80 bg-[#ff5cdb] flex justify-center items-center">
|
|
@component.Carousel(component.CarouselEntry{"/static/test.jpg", "This is a Tree" , "I like Trees"})
|
|
</div>
|
|
|
|
<div class="h-80 bg-[#1733d2] flex justify-center items-center">
|
|
Work
|
|
</div>
|
|
}
|
|
}
|