-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3645908
commit 73acb3e
Showing
7 changed files
with
361 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<template> | ||
<div class="bg-black text-white font-sans min-h-screen"> | ||
<!-- Hero Section --> | ||
<section class="pb-8 pt-40 px-4 sm:px-6 lg:px-8"> | ||
<div class="max-w-3xl mx-auto text-center"> | ||
<h1 class="text-4xl sm:text-5xl font-medium mb-6">Contact Us</h1> | ||
<p class="text-xl mb-8 text-gray-200"> | ||
Get in touch with the Vanguard team | ||
</p> | ||
</div> | ||
</section> | ||
|
||
<!-- Contact Information --> | ||
<section class="py-20 px-4 sm:px-6 lg:px-8"> | ||
<div class="max-w-3xl mx-auto"> | ||
<div class="space-y-12"> | ||
<div> | ||
<h2 class="text-2xl font-semibold mb-4">Email Contacts</h2> | ||
<ul class="space-y-4"> | ||
<li> | ||
<h3 class="text-xl font-medium mb-2">General Enquiries</h3> | ||
<a href="mailto:hello@vanguardbackup.com" class="text-white hover:text-gray-300 transition-colors underline">hello@vanguardbackup.com</a> | ||
</li> | ||
<li> | ||
<h3 class="text-xl font-medium mb-2">Support for Serious Issues</h3> | ||
<a href="mailto:support@vanguardbackup.com" class="text-white hover:text-gray-300 transition-colors underline">support@vanguardbackup.com</a> | ||
</li> | ||
<li> | ||
<h3 class="text-xl font-medium mb-2">Security Vulnerabilities</h3> | ||
<a href="mailto:security@vanguardbackup.com" class="text-white hover:text-gray-300 transition-colors underline">security@vanguardbackup.com</a> | ||
<p class="text-gray-400 mt-2"> | ||
For general details about security disclosure, please view our | ||
<a href="https://github.com/vanguardbackup/vanguard/blob/main/SECURITY.md" target="_blank" rel="noopener noreferrer" class="text-white hover:text-gray-300 transition-colors underline">Security Policy</a>. | ||
</p> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div> | ||
<h2 class="text-2xl font-semibold mb-4">Project Maintainers</h2> | ||
<p class="text-gray-300"> | ||
You can find a list of maintainers of the Vanguard project by visiting our | ||
<a href="https://github.com/orgs/vanguardbackup/people" target="_blank" rel="noopener noreferrer" class="text-white hover:text-gray-300 transition-colors underline">GitHub organization page</a>. | ||
</p> | ||
</div> | ||
|
||
<div> | ||
<h2 class="text-2xl font-semibold mb-4">Community Support</h2> | ||
<p class="text-gray-300"> | ||
For general help and discussions, we recommend using our | ||
<a href="https://github.com/vanguardbackup/vanguard/discussions" target="_blank" rel="noopener noreferrer" class="text-white hover:text-gray-300 transition-colors underline">GitHub Discussions page</a>. | ||
This is the best place to get help from the community and the maintainers. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</template> |
Oops, something went wrong.