···1-import type { Changelog } from "contentlayer/generated";
2import { ChevronLeft, ChevronRight } from "lucide-react";
3import Link from "next/link";
4
···1+import type { Changelog } from "content-collections";
2import { ChevronLeft, ChevronRight } from "lucide-react";
3import Link from "next/link";
4
···1-import { allPosts } from "contentlayer/generated";
2import RSS from "rss";
34export async function GET() {
···1+import { allPosts } from "content-collections";
2import RSS from "rss";
34export async function GET() {
+1-1
apps/web/src/app/(content)/blog/page.tsx
···11 PaginationContent,
12 PaginationLink,
13} from "@openstatus/ui";
14-import { allPosts } from "contentlayer/generated";
15import { Rss } from "lucide-react";
16import type { Metadata } from "next";
17import Link from "next/link";
···11 PaginationContent,
12 PaginationLink,
13} from "@openstatus/ui";
14+import { allPosts } from "content-collections";
15import { Rss } from "lucide-react";
16import type { Metadata } from "next";
17import Link from "next/link";
···1"use client";
23-import { allChangelogs } from "contentlayer/generated";
4import { ArrowUpRight } from "lucide-react";
5import Link from "next/link";
6
···1"use client";
23+import { allChangelogs } from "content-collections";
4import { ArrowUpRight } from "lucide-react";
5import Link from "next/link";
6
···1-import { allChangelogs } from "contentlayer/generated";
2import Link from "next/link";
34import { Button } from "@openstatus/ui/src/components/button";
···1+import { allChangelogs } from "content-collections";
2import Link from "next/link";
34import { Button } from "@openstatus/ui/src/components/button";
+1-1
apps/web/src/config/pricing-table.tsx
···2import Link from "next/link";
3import type React from "react";
45-import { type Changelog, allChangelogs } from "contentlayer/generated";
67function renderChangelogDescription(slug: Changelog["slug"]) {
8 const changelog = allChangelogs.find((c) => c.slug === slug);
···2import Link from "next/link";
3import type React from "react";
45+import { type Changelog, allChangelogs } from "content-collections";
67function renderChangelogDescription(slug: Changelog["slug"]) {
8 const changelog = allChangelogs.find((c) => c.slug === slug);