Feat/contact us integration#3
Open
DeFiFoFum wants to merge 3 commits into
Open
Conversation
…idation - Implement contact form API route with server-side validation - Create Discord contact service for sending form submissions via webhooks - Add rate limiting to prevent abuse of contact form - Implement dependency injection pattern for contact services - Update contact form component to handle API responses and display toast notifications - Add .env.example for Discord webhook configuration
…ntact service - Create README.md for documentation directory - Add ADR for contact service interface and dependency injection - Create ADR template for future architectural decisions - Add architecture overview document - Include contact service architecture diagram - Create Discord webhook integration guide
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
- Create navigation test suite for desktop and mobile viewports - Verify "Soul Solidity" logo is visible across different screen sizes - Implement Playwright tests with viewport configuration and network idle wait
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant changes to the Soul Solidity website, including a new contact form integration with Discord, updates to the README, and the addition of various supporting files and documentation. The most important changes include the implementation of the contact form's backend service, updates to the README for the new project, and the introduction of architecture decision records (ADRs).
Contact Form Integration:
.env.example.app/api/contact/route.tsto handle contact form submissions, validate data, and send notifications via the contact service.ContactServiceFactoryto provide the appropriate contact service implementation based on configuration.DiscordContactServiceto send contact form submissions to a Discord channel via webhooks.IContactServiceandContactFormDatainterfaces to standardize the contact service implementations.Documentation and Project Setup:
README.mdto reflect the new project name, technology stack, features, setup instructions, and documentation links.docs/README.mdto provide an overview of the documentation structure and contents.0001-contact-service-interface.mdto explain the contact service interface and dependency injection pattern.docs/adr/template.md.docs/architecture/diagrams/contact-service.mdto visualize the system components and data flow.These changes collectively enhance the functionality, maintainability, and documentation of the Soul Solidity website.