Skip to content

Commit 1cc9653

Browse files
authored
feat: add restore to new project to build stage (supabase#30972)
* feat: add restore to new project to build stage * updates * add icon
1 parent 7d74d69 commit 1cc9653

File tree

2 files changed

+21
-8
lines changed

2 files changed

+21
-8
lines changed

apps/www/components/LaunchWeek/13/Releases/data/lw13_build_stage.tsx

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { ReactNode } from 'react'
44
import { type ClassValue } from 'clsx'
5-
import { GitBranch, HardDrive } from 'lucide-react'
5+
import { GitBranch, HardDrive, BookCopy } from 'lucide-react'
66

77
export interface AdventDay {
88
icon?: ReactNode // use svg jsx with 34x34px viewport
@@ -92,11 +92,17 @@ export const days: AdventDay[] = [
9292
icon: <HardDrive />,
9393
},
9494
{
95-
title: '',
96-
description: '',
97-
id: '',
98-
is_shipped: false,
99-
links: [],
100-
icon: null,
95+
title: 'Restore to a New Project',
96+
description: 'Effortlessly clone data into a new Supabase project',
97+
id: 'restore',
98+
is_shipped: true,
99+
links: [
100+
{
101+
url: '/blog/restore-to-a-new-project',
102+
label: 'Blog post',
103+
target: '_blank',
104+
},
105+
],
106+
icon: <BookCopy />,
101107
},
102108
]

apps/www/public/rss.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,16 @@
55
<link>https://supabase.com</link>
66
<description>Latest news from Supabase</description>
77
<language>en</language>
8-
<lastBuildDate>Thu, 05 Dec 2024 00:00:00 -0700</lastBuildDate>
8+
<lastBuildDate>Fri, 06 Dec 2024 00:00:00 -0700</lastBuildDate>
99
<atom:link href="https://supabase.com/rss.xml" rel="self" type="application/rss+xml"/>
1010
<item>
11+
<guid>https://supabase.com/blog/restore-to-a-new-project</guid>
12+
<title>Restore to a New Project</title>
13+
<link>https://supabase.com/blog/restore-to-a-new-project</link>
14+
<description>Effortlessly Clone Data into a New Supabase Project</description>
15+
<pubDate>Fri, 06 Dec 2024 00:00:00 -0700</pubDate>
16+
</item>
17+
<item>
1118
<guid>https://supabase.com/blog/supabase-queues</guid>
1219
<title>Supabase Queues</title>
1320
<link>https://supabase.com/blog/supabase-queues</link>

0 commit comments

Comments
 (0)