Skip to content

Commit e39fce3

Browse files
committed
all name change spots
1 parent 39fb452 commit e39fce3

File tree

10 files changed

+23
-27
lines changed

10 files changed

+23
-27
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 Flowble
189+
Copyright 2024 Slipstream
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Flowble
1+
# Slipstream
22

33
[![Checked with Biome](https://img.shields.io/badge/Checked_with-Biome-60a5fa?style=flat&logo=biome)](https://biomejs.dev)
44

app/components/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function Footer() {
44
return (
55
<footer className="flex flex-col gap-2 sm:flex-row py-6 w-full shrink-0 items-center px-4 md:px-6 border-t bg-background/5 backdrop-blur-sm">
66
<p className="text-xs text-gray-500 dark:text-gray-400">
7-
© {new Date().getFullYear()} Flowble
7+
© {new Date().getFullYear()} Slipstream
88
</p>
99
<nav className="sm:ml-auto flex gap-4 sm:gap-6">
1010
<Link className="text-xs hover:underline underline-offset-4" to="/">

app/components/top-nav.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function TopNav() {
4242
</Link>
4343
<a
4444
className="text-sm font-medium hover:underline underline-offset-4"
45-
href="mailto:support@flowble.app"
45+
href="mailto:support@slipstream.video"
4646
target="_blank"
4747
rel="noreferrer"
4848
>
@@ -87,7 +87,7 @@ export default function TopNav() {
8787
<DropdownMenuItem>
8888
<a
8989
className="text-sm font-medium hover:underline underline-offset-4"
90-
href="mailto:support@flowble.app"
90+
href="mailto:support@slipstream.video"
9191
>
9292
Support
9393
</a>

app/lib/seo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const seo = ({
1616
height?: number;
1717
};
1818
}) => {
19-
const siteName = "Flowble";
19+
const siteName = "Slipstream";
2020

2121
const tags = [
2222
{ title: `${title} - ${siteName}` },

app/robots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
User-Agent: *
22
Allow: /
33
Disallow: /api/
4-
Sitemap: https://flowble.app/sitemap.xml
4+
Sitemap: https://slipstream.video/sitemap.xml

app/routes/__root.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ export const Route = createRootRoute({
4141
content: "width=device-width, initial-scale=1",
4242
},
4343
...seo({
44-
title: "Flowble",
44+
title: "Slipstream",
4545
description: "Share videos in a flash",
4646
keywords:
47-
"video sharing, free video hosting, upload videos, streaming platform, video streaming, video platform, online video sharing, video content, digital video, video hosting service, flowble, share videos online, video storage, video streaming service, video content platform",
47+
"video sharing, free video hosting, upload videos, streaming platform, video streaming, video platform, online video sharing, video content, digital video, video hosting service, slipstream, slipstream.video, share videos online, video storage, video streaming service, video content platform",
4848
}),
4949
],
5050
links: [

app/routes/index.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function RouteComponent() {
2424
Share Videos in a Flash
2525
</h1>
2626
<p className="mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400">
27-
Flowble makes it incredibly easy and fast to share your
27+
Slipstream makes it incredibly easy and fast to share your
2828
favorite moments with friends. Upload, send, and enjoy
2929
videos together in seconds.
3030
</p>
@@ -40,7 +40,7 @@ function RouteComponent() {
4040
<section className="w-full min-h-96 py-4 flex items-center justify-center bg-background/5 backdrop-blur-sm">
4141
<div>
4242
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl text-center mb-12">
43-
Why Users Love Flowble
43+
Why Users Love Slipstream
4444
</h2>
4545
<div className="grid gap-10 sm:grid-cols-1 lg:grid-cols-3">
4646
<div className="flex flex-col items-center space-y-3 text-center">
@@ -75,7 +75,8 @@ function RouteComponent() {
7575
Ready to Share Your Moments?
7676
</h2>
7777
<p className="max-w-[600px] text-gray-500 md:text-xl/relaxed lg:text-base/relaxed xl:text-xl/relaxed dark:text-gray-400">
78-
Join Flowble today and start sharing your videos in no time.
78+
Join Slipstream today and start sharing your videos in no
79+
time.
7980
</p>
8081
</div>
8182
<div className="w-full max-w-sm space-y-2">

app/routes/p.$videoId.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const Route = createFileRoute("/p/$videoId")({
6464
],
6565
meta: seo({
6666
title: loaderData.videoData.title,
67-
description: `Watch ${loaderData.videoData.title} on Flowble`,
67+
description: `Watch ${loaderData.videoData.title} on Slipstream`,
6868
image: loaderData.largeThumbnailUrl ?? undefined,
6969
video: {
7070
url: loaderData.videoSources.at(0)?.src ?? undefined,
@@ -102,7 +102,7 @@ function RouteComponent() {
102102
type="button"
103103
>
104104
<VideoIcon className="h-8 w-8 text-red-500" />
105-
<span className="ml-2 text-2xl font-bold">Flowble</span>
105+
<span className="ml-2 text-2xl font-bold">Slipstream</span>
106106
</button>
107107
</Link>
108108
<Link
@@ -115,7 +115,7 @@ function RouteComponent() {
115115
className="text-md flex gap-2 items-center rounded-lg h-10"
116116
>
117117
<SquareArrowOutUpRightIcon className="w-5 h-5" />
118-
{isViewerAuthor ? "Back to your videos" : "Go to Flowble"}
118+
{isViewerAuthor ? "Back to your videos" : "Go to Slipstream"}
119119
</Button>
120120
</Link>
121121
</header>

app/sitemap.xml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
4-
<loc>https://flowble.app</loc>
4+
<loc>https://slipstream.video</loc>
55
<changefreq>daily</changefreq>
66
<priority>1.0</priority>
77
</url>
88
<url>
9-
<loc>https://flowble.app/pricing</loc>
10-
<changefreq>weekly</changefreq>
9+
<loc>https://slipstream.video/pricing</loc>
10+
<changefreq>daily</changefreq>
1111
<priority>0.8</priority>
1212
</url>
1313
<url>
14-
<loc>https://flowble.app/sign-in</loc>
15-
<changefreq>monthly</changefreq>
16-
<priority>0.7</priority>
17-
</url>
18-
<url>
19-
<loc>https://flowble.app/sign-up</loc>
20-
<changefreq>monthly</changefreq>
14+
<loc>https://slipstream.video/sign-in</loc>
15+
<changefreq>daily</changefreq>
2116
<priority>0.7</priority>
2217
</url>
2318
<url>
24-
<loc>https://flowble.app/videos</loc>
19+
<loc>https://slipstream.video/sign-up</loc>
2520
<changefreq>daily</changefreq>
26-
<priority>0.9</priority>
21+
<priority>0.7</priority>
2722
</url>
2823
</urlset>

0 commit comments

Comments
 (0)