Feat/add application deployment platform software landing#136
Merged
Siumauricio merged 2 commits intomainfrom Feb 19, 2026
Merged
Conversation
- Introduced a new page for the Application Deployment Platform, detailing features, deployment options, and FAQs. - Updated the Footer and Header components to include links to the new Application Deployment page for easier navigation.
- Replaced hardcoded links with a structured footerSections array for better organization and maintainability. - Updated the layout to improve accessibility and SEO, including ARIA labels for navigation sections. - Enhanced visual elements and spacing for a more polished appearance.
| <NavLink href="/terms-of-service">Terms of Service</NavLink> | ||
| <NavLink href="/privacy">Privacy Policy</NavLink> | ||
| {/* Link columns - SEO-friendly grouping */} | ||
| <div className="mt-10 grid gap-8 sm:grid-cols-2 lg:grid-cols-4"> |
Contributor
There was a problem hiding this comment.
grid is set to 4 columns on large screens but only 3 sections are defined, creating an empty 4th column
Suggested change
| <div className="mt-10 grid gap-8 sm:grid-cols-2 lg:grid-cols-4"> | |
| <div className="mt-10 grid gap-8 sm:grid-cols-2 lg:grid-cols-3"> |
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.
Greptile Summary
Added comprehensive application deployment platform landing page with SEO-optimized metadata, structured sections showcasing product features, deployment options, FAQs, and integration with existing navigation. Enhanced Footer component with improved accessibility, semantic HTML structure, and better organized navigation links.
Confidence Score: 4/5
apps/website/components/Footer.tsxline 70 for the grid layout adjustmentLast reviewed commit: 7714090