Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"next": "16.1.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"robindoc": "3.7.2",
"@robindoc/minisearch": "3.7.2",
"@robindoc/next": "3.7.2",
"robindoc": "3.7.4",
"@robindoc/minisearch": "3.7.4",
"@robindoc/next": "3.7.4",
"sass": "1.97.2",
"contection": "latest"
},
Expand Down
8 changes: 6 additions & 2 deletions site/src/app/demo/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"use client";

import { type Metadata } from "next/types";
import { DemoStore, initialState } from "./store";
import {
FullStoreSubscriber,
Expand Down Expand Up @@ -50,3 +49,8 @@ export default function DemoPage() {
</DemoStore>
);
}

export const metadata: Metadata = {
title: "Contection - Demo",
description: "Basic demo of possible subscription patterns with Contection and best practices.",
};
Binary file added site/src/app/favicon.ico
Binary file not shown.
9 changes: 7 additions & 2 deletions site/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type ReactNode } from "react";
import { type Metadata } from "next/types";
import { RobinProvider, Header, Footer } from "robindoc";
import { NavigationProvider } from "@robindoc/next";

Expand All @@ -7,7 +7,7 @@ import { searchProvider } from "./search-provider";
import "robindoc/lib/styles.css";
import "./globals.css";

export default function RootLayout({ children }: { children: ReactNode }) {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>
Expand All @@ -30,3 +30,8 @@ export default function RootLayout({ children }: { children: ReactNode }) {
</html>
);
}

export const metadata: Metadata = {
title: "Contection",
description: "Contection is a library for managing state in React applications.",
};