ref: name change

This commit is contained in:
2025-11-08 02:44:25 +05:30
parent 5e670b1971
commit 6fd52b9fb1
6 changed files with 7 additions and 7 deletions

View File

@@ -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 }) {

View File

@@ -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 ecosystembuilt for BankID, MitID, and Suomi.fi contexts.

View File

@@ -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">

View File

@@ -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>

View File

@@ -1,5 +1,5 @@
/**
* API Client for Nordic Privacy AI Backend
* API Client for ShroomShield Backend
* Base URL: http://localhost:8000
*/

View File

@@ -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;