-
Notifications
You must be signed in to change notification settings - Fork 255
Redesign #1039
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Redesign #1039
Changes from 64 commits
Commits
Show all changes
66 commits
Select commit
Hold shift + click to select a range
5e90683
Start redesign
federicobucchi bfcff5f
Fix mobile code box and link callout (#986)
federicobucchi f3c9429
Update package.json with name and private props.
9a5e8c2
Update CLI page copy data.
f875c6f
Update code-box and full-width-text-code-column markup and styles.
5ec8133
Add optimized noise image.
1b47142
Update CLI page structure.
cc7e00f
Update hero animation easing.
94af3a7
Update copy homepage (#989)
federicobucchi 5e4720e
Clean up the files from get started (#992)
shahmishal bd78fe1
Update the code block for Expressive (#993)
shahmishal 1fae20b
Remove arrows from links
federicobucchi 03abe03
Add Editors link
federicobucchi 45409e1
Fix not showing Bash tab in mobile
federicobucchi 96053b3
Change copy for container
federicobucchi 44a63e8
Remove Latest Release
federicobucchi 9206c4b
Change link to Alternate Install Options
federicobucchi 97102bf
Fix mobile table style
federicobucchi 89980b0
Update the image for the embedded use case page (#995)
shahmishal 75c742c
Update the footer tools urls to docs (#996)
shahmishal cfdc07a
Update copy on cloud services use case page. (#997)
davelester 44c683c
Format the code block
shahmishal 62fcf34
Remove all arrows (#998)
federicobucchi 2559931
Add Fish command for Swifly (#999)
federicobucchi 6aaaa76
Update styles on get started hero boxes.
690507a
Handle reduce motion
federicobucchi 138d2e5
simplify disable motion
federicobucchi b492ae3
Update install data
federicobucchi c067f60
feat(Homepage): darkmode support (#1005)
nkrambo 464cd04
Updates copy on Cloud Services page. (#1006)
davelester badf5a4
add main nav links to footer (#1000)
alexandersandberg b0f9ca1
Merge branch 'main' into redesign-public-05-27-25
federicobucchi d74013a
Update the hummingbird logo in the use case page (#1007)
shahmishal 53f9cdb
Update the copy of the cli hero section (#1008)
shahmishal cfac7f3
Update links and tweak text on Embedded use case page (#990)
kubamracek 864d6af
Update dark mode styles for getting started components. (#1002)
jesseaborden 18b4914
UI Style Tweaks (#1004)
jesseaborden 68a7147
Update the urls and image for embedded use case (#1012)
shahmishal b27a3e8
Add bg version of code image row. Rename code image row. (#1011)
jesseaborden 20cd978
Update the image for ergonomic-performan to improve the light mode (#…
shahmishal d7e7259
Add background to the blog post section and move it up on the page (#…
shahmishal 032ef0e
Fix bg css var. Update landing dark mode background hex. (#1016)
jesseaborden 60bb924
fix headline condition and line-height for image-text-row component. …
jesseaborden 1a981a6
fix(CodeBlock): update copy states (#1018)
nkrambo 9a7faea
Add a missing period (#1019)
shahmishal 89f1f4e
Hide storybook from prod env
federicobucchi 65efeed
Add sdk in linux
federicobucchi cf49964
Update windows releases
federicobucchi de2af32
Update macos releases
federicobucchi ccb8675
Update Linux data
federicobucchi 8f54c6c
Fix static linux sdk duplicated
federicobucchi dee56d3
Fix size h2 in install mobile
federicobucchi b730053
fix(code-box): make code box tabs scroll on mobile. (#1022)
jesseaborden 0949d27
Update the text for interoperable (#1027)
shahmishal d55d9a0
feat(hero-anim): Add mobile hero animation logic. Misc cleanup relate…
jesseaborden 756b5c2
Update copy for Container
federicobucchi f322233
Update Winget Instructions link copy
federicobucchi 4d4f6f6
add underline to callout links
alexandersandberg 16d7d41
adjust comments to not extend 50 characters (#1033)
alexandersandberg d3bb7ee
chor(storybook): Update content. (#1031)
jesseaborden 8ae6d4b
increase pillar intro text size
alexandersandberg fa4ca0d
Fix Winget description
federicobucchi d28c194
Merge branch 'main' into redesign
federicobucchi ea87964
style(typography): Update headlines to have uniform size and line-hei…
jesseaborden 57dc34a
Update the image and url on use case page
shahmishal df44e8b
remove the redesign CI workflow file
shahmishal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| # Sample workflow for building and deploying a Jekyll site to GitHub Pages | ||
| name: Deploy Jekyll with GitHub Pages dependencies preinstalled | ||
|
|
||
| on: | ||
| # Runs on pushes targeting the default branch | ||
| push: | ||
| branches: ["redesign"] | ||
|
|
||
| # Allows you to run this workflow manually from the Actions tab | ||
| workflow_dispatch: | ||
|
|
||
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
| concurrency: | ||
| group: "pages" | ||
| cancel-in-progress: false | ||
|
|
||
| jobs: | ||
| # Build job | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| container: ruby:3.3 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| - name: Build site | ||
| run: bundle install && bundle exec jekyll build | ||
| - name: Upload artifact | ||
| uses: actions/upload-pages-artifact@v3 | ||
|
|
||
| # Deployment job | ||
| deploy: | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| runs-on: ubuntu-latest | ||
| needs: build | ||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,3 +22,6 @@ xcuserdata | |
|
|
||
| # VS Code files | ||
| .vscode | ||
|
|
||
| # Npm modules | ||
| node_modules | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| assets/javascripts/new-javascripts/vendor/ |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,7 @@ | ||
| { | ||
| "overrides": [ | ||
| { | ||
| "files": [ | ||
| "**/*.css", | ||
| "**/*.scss" | ||
| ], | ||
| "options": { | ||
| "tabWidth": 2, | ||
| "useTabs": false | ||
| } | ||
| } | ||
| ] | ||
| "tabWidth": 2, | ||
| "useTabs": false, | ||
| "singleQuote": true, | ||
| "semi": false, | ||
| "endOfLine": "lf" | ||
| } |
shahmishal marked this conversation as resolved.
Show resolved
Hide resolved
|
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,10 @@ | ||
| --- | ||
| layout: page-wide | ||
| title: "Not Found" | ||
| layout: new-layouts/base | ||
| title: Internal Server Error | ||
| permalink: /404.html | ||
| --- | ||
|
|
||
| The page you’re looking for can’t be found. | ||
|
|
||
| <section class="section"> | ||
| <h1>Not Found</h1> | ||
| The page you're looking for can’t be found. | ||
| </section> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,10 @@ | ||
| --- | ||
| layout: page-wide | ||
| title: "Internal Server Error" | ||
| layout: new-layouts/base | ||
| title: Internal Server Error | ||
| permalink: /500.html | ||
| --- | ||
|
|
||
| The server encountered an error and was unable to complete your request. | ||
| <section class="section"> | ||
| <h1>Internal Server Error</h1> | ||
| The server encountered an error and was unable to complete your request. | ||
| </section> |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| exclude: [] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| - title: Overview | ||
| link: /community/ | ||
| - title: Swift Evolution | ||
| link: /swift-evolution/ | ||
| - title: Diversity | ||
| link: /diversity/ | ||
| - title: Mentorship | ||
| link: /mentorship/ | ||
| - title: Contributing | ||
| link: /contributing/ |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| - title: Code of Conduct | ||
| link: /code-of-conduct/ | ||
| - title: License | ||
| link: /legal/license.html | ||
| - title: Security | ||
| link: /support/security.html |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| - title: Privacy Policy | ||
| link: //www.apple.com/privacy/privacy-policy/ | ||
| - title: Cookies | ||
| link: //www.apple.com/legal/privacy/en-ww/cookies/ | ||
| - title: API | ||
| link: /openapi |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| - title: Docs | ||
| link: /documentation/ | ||
| - title: Community | ||
| link: /community/ | ||
| - title: Packages | ||
| link: /packages/ | ||
| - title: Blog | ||
| link: /blog/ | ||
| - title: Install | ||
| link: /install/ |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # - title: Follow swiftlang on Github | ||
| # link: https://github.com/swiftlang | ||
| # class: github | ||
|
Comment on lines
+1
to
+3
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we not want this GitHub link? |
||
| - title: Follow @SwiftLang on X | ||
| link: https://x.com/swiftlang | ||
| class: x | ||
| - title: Follow @swift.org on Bluesky | ||
| link: https://bsky.app/profile/swift.org | ||
| class: bluesky | ||
| - title: Follow @swiftLang on Mastodon | ||
| link: https://mastodon.social/@swiftlang | ||
| class: mastodon | ||
| - title: Subscribe to Site Updates | ||
| link: /atom.xml | ||
| class: feed | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| - title: Xcode | ||
| link: https://developer.apple.com/xcode/ | ||
| - title: Visual Studio Code | ||
| link: /documentation/articles/getting-started-with-vscode-swift.html | ||
| - title: Emacs | ||
| link: /documentation/articles/zero-to-swift-emacs.html | ||
| - title: Neovim | ||
| link: /documentation/articles/zero-to-swift-nvim.html | ||
| - title: Other Editors | ||
| link: https://github.com/swiftlang/sourcekit-lsp/tree/main/Documentation/Editor%20Integration.md |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| headline: Develop and deploy to the cloud | ||
| code: $ docker pull swift | ||
| after-code-text: Swift publishes official container images for multiple architectures, making it easy to develop on Linux and to deploy to production. Ready-to-use guides are available for deploying to environments like Kubernetes, AWS, GCP, Digital Ocean, and many others. | ||
| links: | ||
| - href: '/install/linux/docker/' | ||
| copy: 'View installation via Docker' | ||
| - href: '/documentation/server/guides/deployment.html' | ||
| copy: 'View deployment guides' |
5 changes: 5 additions & 0 deletions
5
_data/new-data/get-started/cloud-services/headline-section.yml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| headline: Build & publish containers natively | ||
| body: Container images are the standard way to package cloud software today. Once you've packaged your server in a container image, you can deploy it on any container-based public or private cloud service, or run it locally using a desktop container runtime. <br /><br /> Swift Container Plugin allows you to build and publish container images for your Swift services in one streamlined workflow with Swift Package Manager. | ||
| link: | ||
| href: 'https://github.com/apple/swift-container-plugin' | ||
| copy: Swift Container Plugin |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| headline: Create cloud services with Swift | ||
| body: Run performant services on Linux and deploy to the cloud | ||
| link: | ||
| url: /getting-started/vapor-web-server | ||
| text: Get Started | ||
| boxes: | ||
| - title: Performant | ||
| text: With incredible memory efficiency, Swift operates without a garbage collector, running with predictable speed while using fewer resources. | ||
| - title: Lightweight | ||
| text: Swift has minimal warm-up operations, making it an ideal fit for running cloud services, which are often rescheduled onto virtual machines and containers. | ||
| - title: Scalable | ||
| text: Powering internet-scale cloud services that handle billions of requests a day, Swift is capable of running large production workloads. |
11 changes: 11 additions & 0 deletions
11
_data/new-data/get-started/cloud-services/image-text-row.yml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| image: | ||
| src: /assets/images/get-started/[email protected] | ||
| alt: | ||
| copy: | ||
| headline: Low memory footprint. Massive performance. | ||
| paragraphs: | ||
| - 'Cultured Code migrated the services that support Things to Swift and saw a massive reduction in both cost and response time.' | ||
| - 'By leveraging Swift’s built-in features and server-oriented packages, they were able to thoroughly test and rapidly improve their customer experience.' | ||
| link: | ||
| text: Read more | ||
| href: /blog/how-swifts-server-support-powers-things-cloud/ |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.