fix: cleanup

This commit is contained in:
2026-06-04 06:42:27 -05:00
parent f989b144cf
commit 654cfec147
52 changed files with 290 additions and 540 deletions
-28
View File
@@ -1,28 +0,0 @@
import React from "react";
import { useTranslation } from "react-i18n-lite";
interface LayoutProps {
children: React.ReactNode;
title?: string;
}
export function Layout({
children,
title,
}: LayoutProps): React.ReactElement {
const { t } = useTranslation();
const pageTitle = title ?? t("common.appName");
return (
<div className="app-container">
<header className="app-header">
<h1 className="app-title">{pageTitle}</h1>
<nav className="app-nav">
<a href="/" className="nav-link">{t("annotations.home")}</a>
<a href="/bookmarks-notes" className="nav-link">{t("annotations.bookmarksNotes")}</a>
</nav>
</header>
<main className="app-main">{children}</main>
</div>
);
}
@@ -0,0 +1,27 @@
import type { ReactNode } from "react";
import { useTranslation } from "react-i18n-lite";
interface SimpleFormPageLayoutProps {
title: string;
onBack: () => void;
children: ReactNode;
}
export function SimpleFormPageLayout({ title, onBack, children }: SimpleFormPageLayoutProps) {
const { t } = useTranslation();
return (
<div style={{ maxWidth: 500, margin: "0 auto", padding: 16, minHeight: "100vh", background: "#f8f9fa" }}>
<header style={{ display: "flex", alignItems: "center", gap: 12, marginBottom: 24, padding: "16px 0", borderBottom: "1px solid #eee" }}>
<button
type="button"
onClick={onBack}
style={{ padding: "8px 16px", borderRadius: 6, border: "1px solid #ddd", background: "#fff", cursor: "pointer", fontSize: 14 }}
>
{t("common.back")}
</button>
<h1 style={{ fontSize: 24, fontWeight: 700, color: "#1a1a2e", margin: 0 }}>{title}</h1>
</header>
{children}
</div>
);
}
-1
View File
@@ -1 +0,0 @@
export { Layout } from "./Layout";