mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
// frontend/src/components/Layout/FooterLinks/CommunityLinks/communityLinks.tsx
|
||
import React from 'react';
|
||
|
||
export const CommunityContact: React.FC = () => (
|
||
<div style={{ padding: '40px 20px', maxWidth: '800px', margin: '0 auto' }}>
|
||
<h1>📞 Kontakt</h1>
|
||
<div style={{ backgroundColor: 'white', borderRadius: '12px', padding: '30px', marginTop: '20px' }}>
|
||
<h2 style={{ color: '#2c3e50' }}>Community Edition</h2>
|
||
<p>Kontaktfunktionen sind in der Premium Edition verfügbar.</p>
|
||
<p>
|
||
<a href="/features" style={{ color: '#3498db' }}>
|
||
➡️ Zu den Features
|
||
</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
|
||
export const CommunityLegalPage: React.FC<{ title: string }> = ({ title }) => (
|
||
<div style={{ padding: '40px 20px', maxWidth: '800px', margin: '0 auto' }}>
|
||
<h1>📄 {title}</h1>
|
||
<div style={{ backgroundColor: 'white', borderRadius: '12px', padding: '30px', marginTop: '20px' }}>
|
||
<h2 style={{ color: '#2c3e50' }}>Community Edition</h2>
|
||
<p>Rechtliche Dokumentation ist in der Premium Edition verfügbar.</p>
|
||
<p>
|
||
<a href="/features" style={{ color: '#3498db' }}>
|
||
➡️ Erfahren Sie mehr über Premium
|
||
</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
|
||
// Optional: Barrel export für einfachere Imports
|
||
export default {
|
||
CommunityContact,
|
||
CommunityLegalPage
|
||
}; |