Skip to content

Commit 148a379

Browse files
committed
chore: add porto deprecation notices
1 parent cd79927 commit 148a379

4 files changed

Lines changed: 509 additions & 356 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
![Porto](https://github.com/ithacaxyz/porto/blob/main/.github/banner.png)
22

3+
> [!IMPORTANT]
4+
> Porto is sunsetting. Please move any funds out before July 24, 2026. Details [here](https://ithaca.xyz/updates/sunsetting-porto).
5+
36
# Porto
47

58
Next-gen Account for Ethereum.

apps/docs/layout.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const queryClient = new QueryClient()
1111
export default function Layout({ children }: { children: React.ReactNode }) {
1212
return (
1313
<>
14+
<SunsetBanner />
1415
<WagmiProvider config={WagmiConfig.config}>
1516
<QueryClientProvider client={queryClient}>
1617
{children}
@@ -34,6 +35,23 @@ export default function Layout({ children }: { children: React.ReactNode }) {
3435
)
3536
}
3637

38+
function SunsetBanner() {
39+
return (
40+
<div className="border-gray4 border-b bg-gray2 px-4 py-2 text-center font-[400] text-[14px] text-gray12 leading-[20px] dark:bg-gray1">
41+
Porto is sunsetting. Please move any funds out before July 24, 2026.
42+
Details{' '}
43+
<a
44+
aria-label="Read the Porto sunsetting details"
45+
className="font-[500] underline underline-offset-2"
46+
href="https://ithaca.xyz/updates/sunsetting-porto"
47+
>
48+
here
49+
</a>
50+
.
51+
</div>
52+
)
53+
}
54+
3755
export function TopNavEnd() {
3856
return (
3957
<div className="max-[1080px]:hidden">

0 commit comments

Comments
 (0)