generated from nhcarrigan/template
fix: layout
This commit is contained in:
parent
024b29dc7e
commit
2ab93f06fd
@ -16,7 +16,7 @@ const Arts = (): JSX.Element => {
|
|||||||
return (
|
return (
|
||||||
<main
|
<main
|
||||||
className="w-[95%] text-center
|
className="w-[95%] text-center
|
||||||
max-w-4xl m-auto mt-16 mb-16 rounded-lg"
|
max-w-4xl mx-auto mt-16 rounded-lg"
|
||||||
>
|
>
|
||||||
<h1 className="text-5xl">{`Art`}</h1>
|
<h1 className="text-5xl">{`Art`}</h1>
|
||||||
<section>
|
<section>
|
||||||
|
@ -16,7 +16,7 @@ const Gamez = (): JSX.Element => {
|
|||||||
return (
|
return (
|
||||||
<main
|
<main
|
||||||
className="w-[95%] text-center
|
className="w-[95%] text-center
|
||||||
max-w-4xl m-auto mt-16 mb-16 rounded-lg"
|
max-w-4xl mx-auto mt-16 rounded-lg"
|
||||||
>
|
>
|
||||||
<h1 className="text-5xl">{`Games`}</h1>
|
<h1 className="text-5xl">{`Games`}</h1>
|
||||||
<section>
|
<section>
|
||||||
|
@ -16,9 +16,9 @@ const KoikatsuPage = (): JSX.Element => {
|
|||||||
return (
|
return (
|
||||||
<main
|
<main
|
||||||
className="w-[95%] text-center
|
className="w-[95%] text-center
|
||||||
max-w-4xl m-auto mt-16 mb-16 rounded-lg"
|
max-w-4xl mx-auto mt-16 rounded-lg"
|
||||||
>
|
>
|
||||||
<h1 className="text-5xl">{`Koikatsu`}</h1>
|
<h1 className="text-5xl">{` Koikatsu`}</h1>
|
||||||
<section>
|
<section>
|
||||||
<p className="mb-2">{`Images of Naomi generated in Koikatsu. Note that the list of images is dynamically generated, so we aren't able to provide alt text for these.`}</p>
|
<p className="mb-2">{`Images of Naomi generated in Koikatsu. Note that the list of images is dynamically generated, so we aren't able to provide alt text for these.`}</p>
|
||||||
<Rule />
|
<Rule />
|
||||||
|
@ -121,7 +121,7 @@ const Legacy = (): JSX.Element => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className="w-4/5 text-center max-w-4xl m-auto mt-16 mb-16 rounded-lg">
|
<main className="w-4/5 text-center max-w-4xl mx-auto mt-16 rounded-lg">
|
||||||
<h1 className="text-5xl">{`The Carrigan Legacy`}</h1>
|
<h1 className="text-5xl">{`The Carrigan Legacy`}</h1>
|
||||||
<section>
|
<section>
|
||||||
<Image alt="Nine anime-style female characters with diverse colorful outfits including dresses, crop tops, skirts, and pants, posing together against a light background, some making peace signs or pointing at the viewer" height="1080" src={`https://cdn.nhcarrigan.com/characters/landscape/legacy.png`} width="1920"></Image>
|
<Image alt="Nine anime-style female characters with diverse colorful outfits including dresses, crop tops, skirts, and pants, posing together against a light background, some making peace signs or pointing at the viewer" height="1080" src={`https://cdn.nhcarrigan.com/characters/landscape/legacy.png`} width="1920"></Image>
|
||||||
|
@ -13,7 +13,7 @@ import { NaomiNavItems } from "../../config/NavItems";
|
|||||||
*/
|
*/
|
||||||
const Naomi = (): JSX.Element => {
|
const Naomi = (): JSX.Element => {
|
||||||
return (
|
return (
|
||||||
<main className="w-4/5 text-center max-w-4xl m-auto mt-16 mb-16 rounded-lg">
|
<main className="w-4/5 text-center max-w-4xl mx-auto mt-16 rounded-lg">
|
||||||
<h1 className="text-4xl mb-2">{`Naomi Carrigan`}</h1>
|
<h1 className="text-4xl mb-2">{`Naomi Carrigan`}</h1>
|
||||||
<Image
|
<Image
|
||||||
alt="Naomi Carrigan"
|
alt="Naomi Carrigan"
|
||||||
|
@ -13,7 +13,7 @@ import { NavItems } from "../config/NavItems";
|
|||||||
*/
|
*/
|
||||||
const Home = (): JSX.Element => {
|
const Home = (): JSX.Element => {
|
||||||
return (
|
return (
|
||||||
<main className="w-4/5 text-center max-w-4xl m-auto mt-16 mb-16 rounded-lg">
|
<main className="w-4/5 text-center max-w-4xl mx-auto mt-16 rounded-lg">
|
||||||
<h1 className="text-4xl mb-2">{`NHCarrigan`}</h1>
|
<h1 className="text-4xl mb-2">{`NHCarrigan`}</h1>
|
||||||
<Image
|
<Image
|
||||||
alt="NHCarrigan"
|
alt="NHCarrigan"
|
||||||
|
@ -106,7 +106,7 @@ const Reference = (): JSX.Element => {
|
|||||||
}, [ camera ]);
|
}, [ camera ]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className="w-4/5 text-center max-w-4xl m-auto mt-16 mb-16 rounded-lg">
|
<main className="w-4/5 text-center max-w-4xl mx-auto mt-16 rounded-lg">
|
||||||
<h1 className="text-5xl">{`Reference`}</h1>
|
<h1 className="text-5xl">{`Reference`}</h1>
|
||||||
<section>
|
<section>
|
||||||
<p className="mb-2">{`Want to draw art of Naomi? Here's a fully interactive reference page with all of her model's outfits!`}</p>
|
<p className="mb-2">{`Want to draw art of Naomi? Here's a fully interactive reference page with all of her model's outfits!`}</p>
|
||||||
|
@ -15,7 +15,7 @@ const PlayPage = (): JSX.Element => {
|
|||||||
return (
|
return (
|
||||||
<main
|
<main
|
||||||
className="w-[95%] text-center
|
className="w-[95%] text-center
|
||||||
max-w-4xl m-auto mt-16 mb-16 rounded-lg"
|
max-w-4xl mx-auto mt-16 rounded-lg"
|
||||||
>
|
>
|
||||||
<h1 className="text-5xl">{`Technologies`}</h1>
|
<h1 className="text-5xl">{`Technologies`}</h1>
|
||||||
<p className="mb-2">
|
<p className="mb-2">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user