Remove individual background changes on Project pages

This commit is contained in:
Xevion
2023-02-25 19:59:28 -06:00
parent 93ef99be70
commit c2a3b1af2a
3 changed files with 5 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ const GrainPage: NextPage = () => {
<title>Grain | Xevion.dev</title> <title>Grain | Xevion.dev</title>
</Head> </Head>
<AppWrapper> <AppWrapper>
<div className="text-zinc-50 w-full overflow-auto h-full min-h-screen flex justify-center"> <div className="w-full overflow-auto h-full min-h-screen flex justify-center">
<div className="relative my-10 p-3 px-6 w-full max-w-screen-md"> <div className="relative my-10 p-3 px-6 w-full max-w-screen-md">
<div className="pb-2 flex justify-between"> <div className="pb-2 flex justify-between">
<div className="text-3xl font-semibold"> <div className="text-3xl font-semibold">

View File

@@ -11,8 +11,7 @@ const PhototagPage: NextPage = () => {
<title>Phototag | Xevion.dev</title> <title>Phototag | Xevion.dev</title>
</Head> </Head>
<AppWrapper> <AppWrapper>
<div className="w-full overflow-auto h-full min-h-screen flex justify-center">
<div className="bg-zinc-850 text-zinc-50 w-full overflow-auto h-full min-h-screen flex justify-center">
<div className="relative my-10 p-3 px-6 w-full max-w-screen-md"> <div className="relative my-10 p-3 px-6 w-full max-w-screen-md">
<div className="pb-2 flex justify-between"> <div className="pb-2 flex justify-between">
<div className="text-2xl font-semibold"> <div className="text-2xl font-semibold">

View File

@@ -20,14 +20,13 @@ const images: [string, string | ReactNode][] = [
["/portal/status.png", "Members can check their progress towards becoming full members & view what events they attended."], ["/portal/status.png", "Members can check their progress towards becoming full members & view what events they attended."],
] ]
const PhototagPage: NextPage = () => { const PortalPage: NextPage = () => {
return <> return <>
<Head> <Head>
<title>Portal | Xevion.dev</title> <title>Portal | Xevion.dev</title>
</Head> </Head>
<AppWrapper> <AppWrapper>
<div className="w-full overflow-auto h-full min-h-screen flex justify-center">
<div className="bg-zinc-850 text-zinc-50 w-full overflow-auto h-full min-h-screen flex justify-center">
<div className="relative my-10 p-3 px-6 w-full max-w-screen-md"> <div className="relative my-10 p-3 px-6 w-full max-w-screen-md">
<div className="pb-2 flex justify-between"> <div className="pb-2 flex justify-between">
<div className="text-3xl font-semibold"> <div className="text-3xl font-semibold">
@@ -78,4 +77,4 @@ const PhototagPage: NextPage = () => {
</> </>
} }
export default PhototagPage; export default PortalPage;