'use client' import { Header } from '@/components/Header' import { Footer } from '@/components/Footer' import { Building, Mail, Globe } from 'lucide-react' const companyInfo = [ { icon: Building, label: 'Company Name', value: 'Gugger Digital Services', }, { icon: Globe, label: 'Registered Office', value: 'Holzmoosrütisteig 1b, 8820 Wädenswil, Switzerland', }, ] const contacts = [ { type: 'General Inquiries', email: 'hello@pounce.ch' }, { type: 'Technical Support', email: 'hello@pounce.ch' }, { type: 'Legal / Privacy', email: 'hello@pounce.ch' }, { type: 'Press / Media', email: 'hello@pounce.ch' }, ] export default function ImprintPage() { return (
Legal

Imprint

Legal information about Gugger Digital Services

Company Information

{companyInfo.map((item) => (
{item.label}

{item.value}

))}

Management

Managing Director:

The company is represented by its management in accordance with Swiss law.

Contact

{contacts.map((contact) => (

{contact.type}

{contact.email}
))}

Disclaimer

Liability for Content

The contents of our pages have been created with the utmost care. However, we cannot guarantee the contents accuracy, completeness, or topicality.

Liability for Links

Our website contains links to external third-party websites over whose content we have no influence. The respective provider is always responsible for the linked pages.

Copyright

The content and works created by the site operators on these pages are subject to Swiss copyright law.

Regulatory Information

Gugger Digital Services is a company based in Switzerland. We operate in compliance with Swiss law and applicable EU regulations including GDPR for EU residents. For complaints or regulatory matters, please contact us at{' '} hello@pounce.ch.

) }