![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.ca/private_html/src/pages/ |
import React from 'react';
import LayoutWithSidebar from '../components/LayoutWithSidebar';
import Head from 'next/head';
import Link from 'next/link';
const SocietyAccess: React.FC = () => {
return (
<>
<Head>
<title>Society Dashboard Access - Digital Ark of Law</title>
<meta name="description" content="Access the Society Dashboard for Lawyers and Clients" />
</Head>
<LayoutWithSidebar>
<div className="min-h-screen bg-gradient-to-br from-blue-600 via-purple-600 to-blue-800 flex items-center justify-center p-4">
<div className="bg-white/10 backdrop-blur-lg rounded-3xl p-10 text-center max-w-2xl w-full shadow-2xl">
<h1 className="text-4xl font-bold text-white mb-6">🏛️ Digital Ark of Law Society</h1>
<p className="text-xl text-blue-100 mb-8">Dual-Track Brotherhood of Justice Seekers & Legal Professionals</p>
<div className="space-y-6">
<div className="bg-white/5 rounded-2xl p-6 border-l-4 border-blue-400">
<div className="text-2xl font-bold text-white mb-3">👨⚖️ Lawyer Track (1-33 Degrees)</div>
<div className="text-blue-100 mb-4">
Traditional Scottish Rite inspired progression for legal professionals,
from Entered Apprentice to Sovereign Grand Inspector General.
</div>
<Link href="/society-dashboard" className="inline-block bg-gradient-to-r from-blue-500 to-purple-600 text-white px-8 py-4 rounded-xl font-semibold hover:from-blue-600 hover:to-purple-700 transition-all duration-300 transform hover:-translate-y-1 hover:shadow-xl">
Access Lawyer Track
</Link>
</div>
<div className="bg-white/5 rounded-2xl p-6 border-l-4 border-purple-400">
<div className="text-2xl font-bold text-white mb-3">👥 Client Track (1-10 Degrees)</div>
<div className="text-blue-100 mb-4">
Order of Justice Seekers progression for community members,
from Justice Initiate to Sovereign Justice Keeper.
</div>
<Link href="/society-dashboard" className="inline-block bg-gradient-to-r from-purple-500 to-pink-600 text-white px-8 py-4 rounded-xl font-semibold hover:from-purple-600 hover:to-pink-700 transition-all duration-300 transform hover:-translate-y-1 hover:shadow-xl">
Access Client Track
</Link>
</div>
</div>
<div className="grid grid-cols-2 gap-4 mt-8">
<div className="bg-white/5 p-4 rounded-xl text-white">
<div className="text-3xl mb-2">⚖️</div>
<strong>XP System</strong><br/>
<span className="text-sm text-blue-100">Earn experience through activities, cases, and community service</span>
</div>
<div className="bg-white/5 p-4 rounded-xl text-white">
<div className="text-3xl mb-2">🏛️</div>
<strong>7 Lodges</strong><br/>
<span className="text-sm text-blue-100">Exclusive brotherhood organizations across both tracks</span>
</div>
<div className="bg-white/5 p-4 rounded-xl text-white">
<div className="text-3xl mb-2">🎯</div>
<strong>24 Degrees</strong><br/>
<span className="text-sm text-blue-100">Complete progression system with ceremonial advancement</span>
</div>
<div className="bg-white/5 p-4 rounded-xl text-white">
<div className="text-3xl mb-2">🤝</div>
<strong>Cross-Track</strong><br/>
<span className="text-sm text-blue-100">Lawyers and clients collaborate in mixed lodges</span>
</div>
</div>
<div className="mt-8 space-x-4">
<Link href="/profiles" className="inline-block bg-white/20 text-white px-6 py-3 rounded-xl font-semibold hover:bg-white/30 transition-all duration-300">
👥 View All Members
</Link>
<Link href="/live-cases" className="inline-block bg-white/20 text-white px-6 py-3 rounded-xl font-semibold hover:bg-white/30 transition-all duration-300">
📋 Live Cases
</Link>
</div>
<div className="mt-6 text-blue-100 text-sm">
<strong>Current Status:</strong> 15 Members • 25 Lodge Memberships • 24 Active Degrees
</div>
</div>
</div>
</LayoutWithSidebar>
</>
);
};
export default SocietyAccess;