mirror of
https://github.com/PlatypusPus/MushroomEmpire.git
synced 2026-02-07 22:18:59 +00:00
ref: name change
This commit is contained in:
@@ -3,8 +3,8 @@ import type { ReactNode } from 'react';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Nordic Privacy AI',
|
||||
description: 'AI-powered GDPR compliance platform for Nordic ecosystems',
|
||||
title: 'ShroomShield',
|
||||
description: 'AI-powered GDPR compliance platform',
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }: { children: ReactNode }) {
|
||||
|
||||
@@ -18,7 +18,7 @@ export default function HomePage() {
|
||||
<div className="container-max relative text-center">
|
||||
<div className="mx-auto max-w-3xl">
|
||||
<h1 className="text-4xl sm:text-5xl md:text-6xl font-extrabold tracking-tight text-slate-900">
|
||||
Proactive Nordic Data Privacy
|
||||
ShroomShield
|
||||
</h1>
|
||||
<p className="mt-6 text-base sm:text-lg text-slate-700">
|
||||
AI agents that discover, classify, and remediate personal data across your ecosystem—built for BankID, MitID, and Suomi.fi contexts.
|
||||
|
||||
@@ -11,7 +11,7 @@ export function Navbar() {
|
||||
return (
|
||||
<nav className={`w-full sticky top-0 z-50 bg-white border-b border-slate-200 shadow-md`}>
|
||||
<div className="container-max flex items-center justify-between h-16">
|
||||
<Link href="/" className="font-semibold text-brand-700 text-lg tracking-tight">Nordic Privacy AI</Link>
|
||||
<Link href="/" className="font-semibold text-brand-700 text-lg tracking-tight">ShroomShield</Link>
|
||||
{/* Desktop nav */}
|
||||
{onTry ? (
|
||||
<div className="hidden md:flex items-center gap-6 text-sm">
|
||||
|
||||
@@ -4,7 +4,7 @@ export function Footer() {
|
||||
return (
|
||||
<footer className="mt-24 border-t border-slate-200 bg-white/80">
|
||||
<div className="container-max py-10 flex flex-col sm:flex-row items-center justify-between gap-6">
|
||||
<div className="text-sm text-slate-600">© {new Date().getFullYear()} Nordic Privacy AI. Hackathon prototype.</div>
|
||||
<div className="text-sm text-slate-600">© {new Date().getFullYear()} ShroomShield. Hackathon prototype.</div>
|
||||
<nav className="flex gap-6 text-sm">
|
||||
<Link href="#features" className="hover:text-brand-600">Features</Link>
|
||||
<Link href="#agents" className="hover:text-brand-600">Agents</Link>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* API Client for Nordic Privacy AI Backend
|
||||
* API Client for ShroomShield Backend
|
||||
* Base URL: http://localhost:8000
|
||||
*/
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* IndexedDB utilities for caching uploaded files
|
||||
*/
|
||||
|
||||
const DB_NAME = 'NordicPrivacyAI';
|
||||
const DB_NAME = 'ShroomShield';
|
||||
const STORE_NAME = 'uploads';
|
||||
const DB_VERSION = 1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user