Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
102 lines
2.6 KiB
TypeScript
102 lines
2.6 KiB
TypeScript
import Link from "next/link";
|
|
import { draftMode } from "next/headers";
|
|
|
|
import Date from "./date";
|
|
import CoverImage from "./cover-image";
|
|
import Avatar from "./avatar";
|
|
import MoreStories from "./more-stories";
|
|
|
|
import { getAllPosts } from "@/lib/api";
|
|
import { CMS_NAME, CMS_URL } from "@/lib/constants";
|
|
|
|
function Intro() {
|
|
return (
|
|
<section className="flex-col md:flex-row flex items-center md:justify-between mt-16 mb-16 md:mb-12">
|
|
<h1 className="text-6xl md:text-8xl font-bold tracking-tighter leading-tight md:pr-8">
|
|
Blog.
|
|
</h1>
|
|
<h2 className="text-center md:text-left text-lg mt-5 md:pl-8">
|
|
A statically generated blog example using{" "}
|
|
<a
|
|
href="https://nextjs.org/"
|
|
className="underline hover:text-success duration-200 transition-colors"
|
|
>
|
|
Next.js
|
|
</a>{" "}
|
|
and{" "}
|
|
<a
|
|
href={CMS_URL}
|
|
className="underline hover:text-success duration-200 transition-colors"
|
|
>
|
|
{CMS_NAME}
|
|
</a>
|
|
.
|
|
</h2>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
function HeroPost({
|
|
title,
|
|
coverImage,
|
|
date,
|
|
excerpt,
|
|
author,
|
|
slug,
|
|
}: {
|
|
title: string;
|
|
coverImage: any;
|
|
date: string;
|
|
excerpt: string;
|
|
author: any;
|
|
slug: string;
|
|
}) {
|
|
return (
|
|
<section>
|
|
<div className="mb-8 md:mb-16">
|
|
<CoverImage title={title} slug={slug} url={coverImage.url} />
|
|
</div>
|
|
<div className="md:grid md:grid-cols-2 md:gap-x-16 lg:gap-x-8 mb-20 md:mb-28">
|
|
<div>
|
|
<h3 className="mb-4 text-4xl lg:text-6xl leading-tight">
|
|
<Link href={`/posts/${slug}`} className="hover:underline">
|
|
{title}
|
|
</Link>
|
|
</h3>
|
|
<div className="mb-4 md:mb-0 text-lg">
|
|
<Date dateString={date} />
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<p className="text-lg leading-relaxed mb-4">{excerpt}</p>
|
|
{author && <Avatar name={author.name} picture={author.picture} />}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default async function Page() {
|
|
const { isEnabled } = draftMode();
|
|
const allPosts = await getAllPosts(isEnabled);
|
|
const heroPost = allPosts[0];
|
|
const morePosts = allPosts.slice(1);
|
|
|
|
return (
|
|
<div className="container mx-auto px-5">
|
|
<Intro />
|
|
{heroPost && (
|
|
<HeroPost
|
|
title={heroPost.title}
|
|
coverImage={heroPost.coverImage}
|
|
date={heroPost.date}
|
|
author={heroPost.author}
|
|
slug={heroPost.slug}
|
|
excerpt={heroPost.excerpt}
|
|
/>
|
|
)}
|
|
<MoreStories morePosts={morePosts} />
|
|
</div>
|
|
);
|
|
}
|