Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
95c28be
Neo mode first draft
kimberleyamackenzie Oct 13, 2025
9c1edaa
Second draft
kimberleyamackenzie Oct 13, 2025
e77e6be
Clean up and adjust styles
kimberleyamackenzie Oct 13, 2025
444e870
Mobile responsiveness
kimberleyamackenzie Oct 14, 2025
687afed
Animation
kimberleyamackenzie Oct 14, 2025
e59f4f1
Feedback and suggestion pills draft
kimberleyamackenzie Oct 14, 2025
276d137
Hide copilot from homepage in favor of Neo takeover
kimberleyamackenzie Oct 14, 2025
6e20b65
Move JS to separate file
kimberleyamackenzie Oct 14, 2025
6403068
Merge branch 'master' into km/neo-mode
kimberleyamackenzie Oct 14, 2025
812a7be
Update suggestions
kimberleyamackenzie Oct 14, 2025
98613a3
Regen dev version pulumi@3.203.0-alpha.x821986e
pulumi-bot Oct 14, 2025
146d923
Reorganize documentation and unify navigation menu (#16119)
CamSoper Oct 14, 2025
c04e933
add task mode details (#16246)
kramhuber Oct 14, 2025
d5b086c
Fix merge conflicts
kimberleyamackenzie Oct 15, 2025
3e47eda
Language update
kimberleyamackenzie Oct 15, 2025
47b9268
Update overlay in takeover mode, prevent pointer actions
kimberleyamackenzie Oct 15, 2025
824f0c4
Merge branch 'master' into km/neo-mode
kimberleyamackenzie Oct 15, 2025
b8baea9
Merge branch 'master' into km/neo-mode
kimberleyamackenzie Oct 15, 2025
ab4ff0a
Rebase
kimberleyamackenzie Oct 15, 2025
33de2c0
Adjust badge per request; add signup default for link
kimberleyamackenzie Oct 16, 2025
819cde0
Merge branch 'master' into km/neo-mode
kimberleyamackenzie Oct 16, 2025
61d6056
Merge branch 'master' into km/neo-mode
kimberleyamackenzie Oct 17, 2025
4c11364
Merge branch 'master' into km/neo-mode
kimberleyamackenzie Oct 17, 2025
b5e3037
Add click tracking
kimberleyamackenzie Oct 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
478 changes: 271 additions & 207 deletions layouts/index.html

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions static/icons/pdi-neo-purple.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions static/icons/toggle-off.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions static/icons/toggle-on.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion static/latest-dev-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.204.0-alpha.xf6b4a84
3.204.0-alpha.xf6b4a84
2 changes: 1 addition & 1 deletion theme/src/scss/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
@apply relative;

.header-nav-drop-down-menu {
@apply w-full absolute hidden mt-5 pt-3 top-0 z-20;
@apply w-full absolute hidden mt-5 pt-3 top-0 z-50;
min-width: fit-content;
ul {
@apply bg-white text-left rounded shadow-3xl p-5 whitespace-nowrap;
Expand Down
9 changes: 9 additions & 0 deletions theme/src/scss/_marketing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,12 @@ body {
background:linear-gradient(90deg, #be5188 0%, #805ac3 100%)
}
}

// This hides Copilot on the home page, where we have a "Neo takeover" experience.
// The section classes are generated based on the folder the page is located in, and our home page exists outside
// a folder, hence "section-".
.section- {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, the take-over is happening on the main page (www.pulumi.com) but not docs or blogs, where Copilot is still present, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@arturl exactly - just the homepage, not even any other marketing pages - perhaps if its successful, we can expand it to other spots, nothing would be technically blocking to that

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice 👌

pulumi-copilot {
display: none;
}
}
1 change: 1 addition & 0 deletions theme/src/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
@import "components/pulumi-tertiary-nav";
@import "components/user-toggle";
@import "components/tabs";
@import "neo-mode";

h1,
h2,
Expand Down
2 changes: 1 addition & 1 deletion theme/src/scss/marketing/_developer-advocates.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@apply relative cursor-pointer;

.header-nav-drop-down-menu {
@apply w-full absolute hidden min-w-max pt-6 top-2 z-10;
@apply w-full absolute hidden min-w-max pt-6 top-2 z-50;

ul {
@apply bg-white text-left rounded shadow-xl py-2 whitespace-nowrap border border-black;
Expand Down
Loading
Loading