2024-04-17 15:57:11 +02:00
< template >
< NuxtLayout name = "default" >
2024-04-24 17:05:53 +02:00
< div class = "flex flex-col md:gap-4 gap-2 pt-4 pb-2 sm:px-6 xl:px-18 px-4" >
2024-04-24 16:33:50 +02:00
< h1 class = "pb-2 text-center md:text-6xl text-4xl font-bold text-white" > the grand line webring < / h1 >
<!-- INTRO -- >
2024-04-24 15:27:03 +02:00
< div >
< h2 class = "md:text-3xl text-xl font-semibold text-white" > Ahoy there ! < / h2 >
< p class = "text-l font-medium text-white" >
Welcome to the Grand Line Webring , where all passionate pirates and fans of One Piece gather to celebrate the epic adventures of Monkey D . Luffy and his crew ! Whether you sail the seas or dream of setting sail , this webring is for you . Join our crew and become part of the greatest adventure on the Grand Line !
< / p >
< / div >
2024-04-24 16:33:50 +02:00
<!-- HOW TO JOIN -- >
2024-04-24 15:27:03 +02:00
< div >
< h2 class = "md:text-3xl text-xl font-semibold text-white" > How to Join < / h2 >
< p class = "text-l font-medium text-white" >
2024-04-24 17:05:53 +02:00
To join the Grand Line Webring , < a href = "https://github.com/SindreKjelsrud/onepiece-webring" class = "px-1 font-bold bg-red-600" > submit a pull request < / a > to our GitHub repository . Be sure to read the < a href = "https://github.com/SindreKjelsrud/onepiece-webring/blob/main/README.md" class = "px-1 font-bold bg-red-600" > README . md < / a > to make sure you ' ve covered all the criterias to join !
2024-04-24 15:27:03 +02:00
We ' ll review your submission as fast as we can , and remember to include the widget on your site for all to see .
< / p >
< / div >
2024-04-24 16:33:50 +02:00
<!-- WEBRING WIDGETS -- >
2024-04-24 15:27:03 +02:00
< div >
< h2 class = "md:text-3xl text-xl font-semibold text-white" > Webring Widgets < / h2 >
< p class = "text-l font-medium text-white" >
2024-04-24 17:05:53 +02:00
You could either use the white or black SVG below ( click them to download ) , or < a href = "https://github.com/SindreKjelsrud/onepiece-webring/tree/main/public" class = "px-1 font-bold bg-red-600" > download it from here < / a > and change the color yourself !
2024-04-24 15:27:03 +02:00
< / p >
< / div >
2024-04-17 15:57:11 +02:00
< div class = "flex justify-between" >
2024-04-24 15:27:03 +02:00
< a href = "/goingmerry.white.svg" download > < img src = "/goingmerry.white.svg" alt = "The Going Merry SVG in white" class = "md:w-36 w-20" / > < / a >
< a href = "/goingmerry.black.svg" download > < img src = "/goingmerry.black.svg" alt = "The Going Merry SVG in black" class = "md:w-36 w-20" / > < / a >
2024-04-17 15:57:11 +02:00
< / div >
2024-04-24 16:33:50 +02:00
<!-- WEBRING CREW -- >
2024-04-24 15:27:03 +02:00
< h2 class = "md:text-3xl text-xl font-semibold text-white" > Webring Crew < / h2 >
< p class = "text-l font-medium text-white" >
2024-04-24 16:33:50 +02:00
Interested in checking out your fellow crewmates ? Here you can find all the crewmates of the Grand Line Webring .
2024-04-17 15:57:11 +02:00
< / p >
2024-04-24 16:33:50 +02:00
< div class = "flex justify-center" >
< ul class = "grid-cols" id = "crew-list" >
<!-- LIST -- >
< li data -lang = " en " id = "sid" >
< a href = "https://kjelsrud.dev" > kjelsrud . dev < / a >
2024-04-29 11:14:03 +02:00
< / li >
2024-05-07 18:34:07 +01:00
< li data -lang = " en " id = "flt" >
< a href = "https://foreverliketh.is/" > foreverliketh . is < / a >
< / li >
2024-07-03 10:25:27 -05:00
< li data -lang = " en " id = "uar" >
< a href = "https://unholyrotten.neocities.org" > unholyrotten < / a >
< / li >
2024-04-24 16:33:50 +02:00
< / ul >
< / div >
2024-04-17 15:57:11 +02:00
< / div >
2024-04-24 17:06:48 +02:00
< img src = "/nakama.webp" alt = "One Piece Nakama" / >
2024-04-17 15:57:11 +02:00
< / NuxtLayout >
2024-04-24 16:33:50 +02:00
< / template >
< style scoped >
2024-04-24 17:05:53 +02:00
. grid - cols {
2024-04-24 16:33:50 +02:00
display : grid ;
grid - template - columns : repeat ( 4 , 1 fr ) ;
2024-04-24 17:05:53 +02:00
gap : 3 rem ;
}
@ media only screen and ( max - width : 600 px ) {
2024-04-24 16:33:50 +02:00
. grid - cols {
display : grid ;
2024-04-24 17:05:53 +02:00
grid - template - columns : repeat ( 3 , 1 fr ) ;
2024-04-29 11:14:03 +02:00
gap : 0.5 rem ;
2024-04-24 16:33:50 +02:00
}
2024-04-24 17:05:53 +02:00
}
ul , li a {
2024-04-24 16:33:50 +02:00
color : white ;
font - weight : 600
2024-04-24 17:05:53 +02:00
}
li : hover {
2024-04-24 21:35:29 +02:00
background - color : # dc2626 ;
2024-04-24 17:05:53 +02:00
}
# crew - list {
2024-04-24 16:33:50 +02:00
counter - reset : crew - index ;
2024-04-24 17:05:53 +02:00
}
# crew - list > li {
2024-04-24 16:33:50 +02:00
counter - increment : crew - index ;
2024-04-24 17:05:53 +02:00
}
# crew - list > li : : before {
2024-04-24 16:33:50 +02:00
content : counter ( crew - index ) ". " ;
2024-04-24 17:05:53 +02:00
}
2024-04-24 21:35:29 +02:00
# crew - list > li : target {
background - color : # dc2626 ;
}
2024-04-24 16:33:50 +02:00
< / style >