Skip to content

Commit

Permalink
Fixed some fatal SSR and CSR related issues and coincidentally cleane…
Browse files Browse the repository at this point in the history
…d up some code.
  • Loading branch information
SteveGremory committed Aug 24, 2023
1 parent 5af263e commit 180544d
Show file tree
Hide file tree
Showing 6 changed files with 309 additions and 402 deletions.
251 changes: 149 additions & 102 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,113 +1,160 @@
import Image from 'next/image'
"use client";
import React from "react";
import dynamic from "next/dynamic";
import Image from "next/image";
import { poppins, raleway } from "./layout";

const Task = dynamic(() => import("@/components/task/task"), { ssr: false });
const Note = dynamic(() => import("@/components/notes/notes"), { ssr: false });
const Date = dynamic(() => import("@/components/date/date"), { ssr: false });
const CustomModal = dynamic(() => import("@/components/modal/modal"), {
ssr: false,
});

import { useDisclosure } from "@nextui-org/react";

const tasks_arr = [
{
name: "Code",
time: "10:00AM, 27th Feb, 2024",
key: 1,
},
{
name: "Read",
time: "11:00AM, 27th Feb, 2024",
key: 2,
},
{
name: "Eat",
time: "12:00PM, 27th Feb, 2024",
key: 3,
},
{
name: "Sleep",
time: "1:00PM, 27th Feb, 2024",
key: 4,
},
{
name: "Repeat",
time: "2:00PM, 27th Feb, 2024",
key: 5,
},
];

const notes_arr = [
{
name: "C++ Pt. 1",
time: "10:00AM, 27th Feb, 2024",
key: 1,
},
{
name: "C++ Pt. 2",
time: "11:00AM, 27th Feb, 2024",
key: 2,
},
{
name: "C++ Pt. 3",
time: "12:00PM, 27th Feb, 2024",
key: 3,
},
{
name: "C++ Pt. 4",
time: "1:00PM, 27th Feb, 2024",
key: 4,
},
{
name: "C++ Pt. 5",
time: "2:00PM, 27th Feb, 2024",
key: 5,
},
];

export default function Home() {
const { isOpen, onOpen, onOpenChange } = useDisclosure();

return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm lg:flex">
<p className="fixed left-0 top-0 flex w-full justify-center border-b border-gray-300 bg-gradient-to-b from-zinc-200 pb-6 pt-8 backdrop-blur-2xl dark:border-neutral-800 dark:bg-zinc-800/30 dark:from-inherit lg:static lg:w-auto lg:rounded-xl lg:border lg:bg-gray-200 lg:p-4 lg:dark:bg-zinc-800/30">
Get started by editing&nbsp;
<code className="font-mono font-bold">app/page.tsx</code>
</p>
<div className="fixed bottom-0 left-0 flex h-48 w-full items-end justify-center bg-gradient-to-t from-white via-white dark:from-black dark:via-black lg:static lg:h-auto lg:w-auto lg:bg-none">
<a
className="pointer-events-none flex place-items-center gap-2 p-8 lg:pointer-events-auto lg:p-0"
href="https://vercel.com?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
By{' '}
<Image
src="/vercel.svg"
alt="Vercel Logo"
className="dark:invert"
width={100}
height={24}
priority
/>
</a>
<div className="h-screen relative">
<Image
src="/background.png"
className="object-cover object-center h-full"
layout="fill"
alt="Background"
/>
{/* Outer Flexbox for the division into 25:75 */}
<div className="flex flex-row">
{/* Sidebar content goes here */}
<div className="hidden md:block w-1/4 left-0 top-0 h-screen bg-white bg-opacity-20 backdrop-blur-md">
<div>
<div
className={`mt-8 m-4 text-white font-normal text-left text-5xl ${raleway.className}`}
>
<h2>Good Evening,</h2>
<h1 className={`font-semibold`}>Steve!</h1>
<Date />
</div>

<div className="absolute bottom-0 w-full p-4">
<button className="w-full py-2 px-4 bg-white bg-opacity-20 backdrop-blur-md hover:bg-opacity-40 text-white rounded-md">
Sign Out
</button>
</div>
</div>
</div>
</div>

<div className="relative flex place-items-center before:absolute before:h-[300px] before:w-[480px] before:-translate-x-1/2 before:rounded-full before:bg-gradient-radial before:from-white before:to-transparent before:blur-2xl before:content-[''] after:absolute after:-z-20 after:h-[180px] after:w-[240px] after:translate-x-1/3 after:bg-gradient-conic after:from-sky-200 after:via-blue-200 after:blur-2xl after:content-[''] before:dark:bg-gradient-to-br before:dark:from-transparent before:dark:to-blue-700 before:dark:opacity-10 after:dark:from-sky-900 after:dark:via-[#0141ff] after:dark:opacity-40 before:lg:h-[360px] z-[-1]">
<Image
className="relative dark:drop-shadow-[0_0_0.3rem_#ffffff70] dark:invert"
src="/next.svg"
alt="Next.js Logo"
width={180}
height={37}
priority
/>
</div>
<div className="flex-1">
<div className="sm:flex pl-10 pr-10">
<div className="h-screen p-8 sm:w-1/2 text-left ">
<div className="bg-[#969696] bg-opacity-50 backdrop-blur-md h-full rounded-lg flex flex-col overflow-auto">
<div className="mt-8 m-6">
<div
className={`flex justify-between text-white font-normal text-4xl ${raleway.className}`}
>
<h2 className={`font-semibold text-6xl`}>Tasks</h2>

<button onClick={onOpen}>
<Image
priority
src="/plus.svg"
height={56}
width={56}
alt="Add a task"
/>
</button>
</div>

<div className="mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left">
<a
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Docs{' '}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Find in-depth information about Next.js features and API.
</p>
</a>
<Task tasks_array={tasks_arr} />
</div>
</div>
</div>

<a
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Learn{' '}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Learn about Next.js in an interactive course with&nbsp;quizzes!
</p>
</a>
<div className="h-screen p-8 sm:w-1/2 text-left ">
<div className="bg-[#969696] bg-opacity-50 backdrop-blur-md h-full rounded-lg flex flex-col overflow-auto">
<div className="mt-8 m-6">
<div
className={`flex justify-between text-white font-normal text-4xl ${raleway.className}`}
>
<h2 className={`font-semibold text-6xl`}>Notes</h2>

<a
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Templates{' '}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Explore the Next.js 13 playground.
</p>
</a>
<button>
<Image
priority
src="/plus.svg"
height={56}
width={56}
alt="Add a task"
/>
</button>
</div>

<a
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"
target="_blank"
rel="noopener noreferrer"
>
<h2 className={`mb-3 text-2xl font-semibold`}>
Deploy{' '}
<span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none">
-&gt;
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Instantly deploy your Next.js site to a shareable URL with Vercel.
</p>
</a>
<Note notes_array={notes_arr} />
</div>
</div>
</div>
</div>
</div>
</div>
</main>
)

<CustomModal isOpen={isOpen} onOpenChange={onOpenChange} />
</div>
);
}
Loading

0 comments on commit 180544d

Please sign in to comment.