feat: add allowed Linear API operations to MCP config

This commit is contained in:
Do Siki
2025-09-05 03:10:17 +02:00
parent 7e7d3fb1cc
commit b6365543ef
36 changed files with 14648 additions and 1 deletions
+79
View File
@@ -0,0 +1,79 @@
import { siteConfig } from '@/config/site'
export default function Footer() {
return (
<footer className="bg-gray-50 border-t border-gray-200">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
{/* Company Info */}
<div className="md:col-span-2">
<h3 className="text-lg font-semibold text-gray-900 mb-4">
{siteConfig.general.name}
</h3>
<p className="text-gray-600 mb-4 max-w-md">
{siteConfig.general.description}
</p>
<div className="flex space-x-4">
<div className="text-sm text-gray-500">
<p>Email: {siteConfig.contact.email}</p>
<p>Cég: {siteConfig.general.name}</p>
<p>Székhely: {siteConfig.contact.address}</p>
</div>
</div>
</div>
{/* Navigation Links */}
<div>
<h3 className="text-sm font-semibold text-gray-900 uppercase tracking-wide mb-4">
Navigáció
</h3>
<ul className="space-y-2">
{siteConfig.navigation.footer.map((item) => (
<li key={item.href}>
<a href={item.href} className="text-gray-600 hover:text-blue-600 transition-colors">
{item.label}
</a>
</li>
))}
</ul>
</div>
{/* Services */}
<div>
<h3 className="text-sm font-semibold text-gray-900 uppercase tracking-wide mb-4">
Szolgáltatások
</h3>
<ul className="space-y-2">
{siteConfig.services.services.map((service) => (
<li key={service.id} className="text-gray-600">
{service.title}
</li>
))}
<li className="text-gray-600">Műszaki támogatás</li>
</ul>
</div>
</div>
{/* Bottom section */}
<div className="border-t border-gray-200 pt-8 mt-8">
<div className="flex flex-col sm:flex-row justify-between items-center">
<p className="text-gray-500 text-sm">
{siteConfig.footer.copyright}
</p>
<div className="flex space-x-4 mt-4 sm:mt-0">
{siteConfig.footer.links.map((link) => (
<a
key={link.href}
href={link.href}
className="text-gray-500 hover:text-blue-600 text-sm transition-colors"
>
{link.label}
</a>
))}
</div>
</div>
</div>
</div>
</footer>
);
}