Skip to content

Commit 32f9c3b

Browse files
author
Shaw
committed
chore: align blog back link style
1 parent c4644ce commit 32f9c3b

3 files changed

Lines changed: 20 additions & 19 deletions

File tree

packages/app/app.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ const config = {
4040
// and (via build placeholders) the splash/launch surfaces.
4141
themeColor: "#FF5800",
4242
backgroundColor: "#FF5800",
43-
shareImagePath: "/brand/logos/logo_white_orangebg.svg",
43+
// og-image.png lives in /public. Many social cards reject SVG, so we
44+
// keep a PNG here. The PNG itself should be regenerated by a designer
45+
// from /brand/logos/logo_white_orangebg.svg on an #FF5800 1200x630 field.
46+
shareImagePath: "/og-image.png",
4447
},
4548

4649
branding: {

packages/cloud-frontend/src/components/landing/BlogPost.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default function BlogPost({
5050
<div className="sticky top-20 z-10 mb-8">
5151
<Link
5252
to="/blog"
53-
className="inline-flex items-center gap-2 rounded-full bg-white/10 px-4 py-2 text-sm text-neutral-200 backdrop-blur-sm transition-colors hover:bg-orange-500/40 hover:text-white"
53+
className="inline-flex items-center gap-2 border border-white/14 bg-black px-4 py-2 text-sm text-white transition-colors hover:bg-[#FF5800] hover:text-white"
5454
>
5555
<ArrowLeft className="h-4 w-4" />
5656
Back to Blog

packages/cloud-frontend/src/pages/terms-of-service/page.tsx

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ const sections: Array<{ title: string; body: React.ReactNode }> = [
4747
Use the materials for any commercial purpose or for any public
4848
display
4949
</li>
50-
<li>
51-
Attempt to reverse engineer any software contained on elizaOS
52-
</li>
50+
<li>Attempt to reverse engineer any software contained on elizaOS</li>
5351
<li>
5452
Remove any copyright or other proprietary notations from the
5553
materials
@@ -80,8 +78,8 @@ const sections: Array<{ title: string; body: React.ReactNode }> = [
8078
<p className="leading-relaxed text-white/80">
8179
Your use of the elizaOS API is subject to rate limits and usage quotas.
8280
You agree not to exceed these limits or attempt to circumvent them. We
83-
reserve the right to modify, suspend, or discontinue the API at any
84-
time with or without notice.
81+
reserve the right to modify, suspend, or discontinue the API at any time
82+
with or without notice.
8583
</p>
8684
),
8785
},
@@ -90,8 +88,8 @@ const sections: Array<{ title: string; body: React.ReactNode }> = [
9088
body: (
9189
<p className="leading-relaxed text-white/80">
9290
You agree to pay all fees associated with your use of the Service. All
93-
fees are non-refundable unless otherwise stated. We reserve the right
94-
to change our pricing structure at any time with reasonable notice to
91+
fees are non-refundable unless otherwise stated. We reserve the right to
92+
change our pricing structure at any time with reasonable notice to
9593
users.
9694
</p>
9795
),
@@ -100,8 +98,8 @@ const sections: Array<{ title: string; body: React.ReactNode }> = [
10098
title: "6. Prohibited Uses",
10199
body: (
102100
<p className="leading-relaxed text-white/80">
103-
You may not use the Service for any illegal or unauthorized purpose.
104-
You must not, in the use of the Service, violate any laws in your
101+
You may not use the Service for any illegal or unauthorized purpose. You
102+
must not, in the use of the Service, violate any laws in your
105103
jurisdiction including but not limited to copyright laws.
106104
</p>
107105
),
@@ -114,8 +112,8 @@ const sections: Array<{ title: string; body: React.ReactNode }> = [
114112
elizaOS makes no warranties, expressed or implied, and hereby disclaims
115113
and negates all other warranties including, without limitation, implied
116114
warranties or conditions of merchantability, fitness for a particular
117-
purpose, or non-infringement of intellectual property or other
118-
violation of rights.
115+
purpose, or non-infringement of intellectual property or other violation
116+
of rights.
119117
</p>
120118
),
121119
},
@@ -125,19 +123,19 @@ const sections: Array<{ title: string; body: React.ReactNode }> = [
125123
<p className="leading-relaxed text-white/80">
126124
In no event shall elizaOS or its suppliers be liable for any damages
127125
(including, without limitation, damages for loss of data or profit, or
128-
due to business interruption) arising out of the use or inability to
129-
use the materials on elizaOS, even if elizaOS or an authorized
130-
representative has been notified orally or in writing of the
131-
possibility of such damage.
126+
due to business interruption) arising out of the use or inability to use
127+
the materials on elizaOS, even if elizaOS or an authorized
128+
representative has been notified orally or in writing of the possibility
129+
of such damage.
132130
</p>
133131
),
134132
},
135133
{
136134
title: "9. Modifications",
137135
body: (
138136
<p className="leading-relaxed text-white/80">
139-
elizaOS may revise these terms of service at any time without notice.
140-
By using this Service you are agreeing to be bound by the then current
137+
elizaOS may revise these terms of service at any time without notice. By
138+
using this Service you are agreeing to be bound by the then current
141139
version of these terms of service.
142140
</p>
143141
),

0 commit comments

Comments
 (0)