Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions public/landing-images/pillarx-ai.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/components/LandingPage/GlobalStyles/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,10 @@ ul li:last-child {
justify-content: flex-end;
}

.home_feature__detail__content__icon__wrapper img {
max-height: 4rem;
}

@media only screen and (max-width: 767px) {
.home_feature__detail__content__icon__wrapper img {
max-height: 2.5rem;
Expand Down
10 changes: 5 additions & 5 deletions src/containers/__snapshots__/Main.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -323,16 +323,16 @@ exports[`<Main /> > renders correctly 1`] = `
className="home_feature__detail__content home_feature__detail__content--column gradient_border"
>
<h2>
Web3 App Store
AI Agents
<br />
<span>
Access dApps Without
Delegate Tasks.
<br />
Leaving PillarX
Stay in Control.
</span>
</h2>
<p>
All your favorite dApps are built directly into PillarX, meaning you don’t have to leave the platform to connect to any of them! Safe, secure, and under your control.
Powered by Phone ID, AI agents can securely act on your behalf across PillarX. Define exactly what they can do, set spending limits and stay in control of every action.
</p>
<div
className="home_feature__detail__content__icon"
Expand All @@ -345,7 +345,7 @@ exports[`<Main /> > renders correctly 1`] = `
>
<img
alt=""
src="https://cdn.pillarx.app/home-superpowers-icon-2.svg"
src="/landing-images/pillarx-ai.svg"
/>
</div>
</div>
Expand Down
17 changes: 7 additions & 10 deletions src/pages/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,25 +260,22 @@ export default function LandingPage() {
</div>
<div className="home_feature__detail__content home_feature__detail__content--column gradient_border">
<h2>
Web3 App Store
AI Agents
<br />
<span>
Access dApps Without
<br /> Leaving PillarX
Delegate Tasks.
<br /> Stay in Control.
</span>
</h2>
<p>
All your favorite dApps are built directly into PillarX,
meaning you don’t have to leave the platform to connect to any
of them! Safe, secure, and under your control.
Powered by Phone ID, AI agents can securely act on your behalf
across PillarX. Define exactly what they can do, set spending
limits and stay in control of every action.
</p>
<div className="home_feature__detail__content__icon">
<h4>Coming Soon</h4>
<div className="home_feature__detail__content__icon__wrapper">
<img
src="https://cdn.pillarx.app/home-superpowers-icon-2.svg"
alt=""
/>
<img src="/landing-images/pillarx-ai.svg" alt="" />
</div>
</div>
</div>
Expand Down
Loading