mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 01:42:13 +02:00
- Add nutriphi branding to shared-branding package (types, config, logo) - Add nutriphi icon to app-icons and MANA_APPS for AppSlider - Replace custom login/register pages with shared LoginPage/RegisterPage - Add forgot-password page using shared ForgotPasswordPage component - Create AppSlider component for nutriphi web - Update vite.config.ts with SSR config for shared packages - Add nutriphi env variables to generate-env.mjs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
277 B
Svelte
13 lines
277 B
Svelte
<script lang="ts">
|
|
import AppLogo from '../AppLogo.svelte';
|
|
|
|
interface Props {
|
|
size?: number;
|
|
color?: string;
|
|
class?: string;
|
|
}
|
|
|
|
let { size = 55, color, class: className = '' }: Props = $props();
|
|
</script>
|
|
|
|
<AppLogo app="nutriphi" {size} {color} class={className} />
|