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
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -36,7 +36,7 @@
"@inrupt/solid-client-authn-browser": "^4.0.0",
"@inrupt/solid-client-authn-node": "^3.1.0",
"@mind-studio/core": "^0.7.0",
"@mind-studio/ui": "^0.4.0",
"@mind-studio/ui": "^0.7.0",
"@tiptap/extension-collaboration": "^2.11.5",
"@tiptap/extension-collaboration-cursor": "^2.11.5",
"@tiptap/extension-placeholder": "^2.27.2",
Expand Down
11 changes: 4 additions & 7 deletions src/app/layout.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,6 +4,7 @@ import Link from "next/link";
import "./globals.css";
import { DEFAULT_APPS } from "@mind-studio/core/apps";
import { MindAppLauncher } from "@mind-studio/core/launcher";
import { Logo } from "@mind-studio/ui";
import { AuthCtaServer } from "@/components/auth-cta-server";
import { FeedbackLauncher } from "@/components/feedback-launcher";
import { MainNav } from "@/components/main-nav";
Expand DownExpand Up@@ -79,10 +80,8 @@ async function Masthead() {
return (
<header className="border-b border-border bg-card">
<div className="mx-auto flex max-w-5xl items-center justify-between gap-2 px-3 py-3 sm:gap-8 sm:px-10 sm:py-5">
<Link href="/" className="flex min-w-0 items-baseline gap-3">
<span className="display truncate text-base tracking-tight sm:text-2xl">
Mind <em>Codespaces</em>
</span>
<Link href="/" className="flex min-w-0 items-center gap-3">
<Logo label="Codespaces" />
<span className="hidden whitespace-nowrap text-[10px] uppercase tracking-[0.22em] text-muted-foreground lg:inline">
<span className="text-primary">●</span> solid git bridge
</span>
Expand All@@ -109,9 +108,7 @@ function Colophon() {
<footer className="mt-16 border-t border-border bg-card">
<div className="mx-auto flex max-w-5xl flex-col gap-6 px-4 py-8 sm:flex-row sm:items-start sm:justify-between sm:px-10 sm:py-10">
<div className="max-w-md">
<p className="display text-2xl">
Mind <em>Codespaces</em>
</p>
<Logo label="Codespaces" />
<p className="mt-3 text-sm leading-relaxed text-muted-foreground">
A prototype bridge between Git and Solid Pods. Git stays Git; the pod owns identity,
metadata, and the published site.
Expand Down
Loading