Skip to content

Commit c8e57ff

Browse files
committed
made changes to color in webapp and minor tweaks
1 parent b4dcb3e commit c8e57ff

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

www/src/pages/components/Blogs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default function Blogs() {
6262
</div>
6363
<div className="relative mx-auto max-w-7xl">
6464
<div className="text-center">
65-
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">From the blog</h2>
65+
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">From the Blog</h2>
6666
<p className="mx-auto mt-3 max-w-2xl text-xl text-gray-500 sm:mt-4">
6767
See the blogs from the most recent updates and to the past years!
6868
</p>
@@ -75,7 +75,7 @@ export default function Blogs() {
7575
</div>
7676
<div className="flex flex-1 flex-col justify-between bg-white p-6">
7777
<div className="flex-1">
78-
<p className="text-sm font-medium text-indigo-600">
78+
<p className="text-sm font-medium text-rose-500">
7979
<a href={post.category.href} className="hover:underline">
8080
{post.category.name}
8181
</a>

www/src/pages/components/FeaturesSection.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function FeaturesSection() {
4747
return (
4848
<div className="relative bg-white py-24 sm:py-32 lg:py-40">
4949
<div className="mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-7xl lg:px-8">
50-
<h2 className="text-lg font-semibold text-indigo-600">Core Features</h2>
50+
<h2 className="text-lg font-semibold text-rose-500">Core Features</h2>
5151
<p className="mt-2 text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
5252
What makes Reactime so great?
5353
</p>
@@ -61,7 +61,7 @@ export default function FeaturesSection() {
6161
<div className="flow-root rounded-lg bg-gray-50 px-6 pb-8 h-64">
6262
<div className="-mt-6">
6363
<div>
64-
<span className="inline-flex items-center justify-center rounded-xl bg-indigo-500 p-3 shadow-lg">
64+
<span className="inline-flex items-center justify-center rounded-xl bg-rose-500 p-3 shadow-lg">
6565
<feature.icon className="h-8 w-8 text-white" aria-hidden="true" />
6666
</span>
6767
</div>

www/src/pages/components/TeamSection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ function replace(e: React.SyntheticEvent<HTMLImageElement>): void{
8585
<div className="space-y-5 sm:mx-auto sm:max-w-xl sm:space-y-4 lg:max-w-5xl">
8686
<h2 className="text-3xl font-bold tracking-tight sm:text-4xl">Our Contributors</h2>
8787
<p className="text-xl text-gray-500">
88-
Risus velit condimentum vitae tincidunt tincidunt. Mauris ridiculus fusce amet urna nunc. Ut nisl ornare
89-
diam in.
88+
{/* Risus velit condimentum vitae tincidunt tincidunt. Mauris ridiculus fusce amet urna nunc. Ut nisl ornare
89+
diam in. */}
9090
</p>
9191
</div>
9292
<ul
@@ -100,7 +100,7 @@ function replace(e: React.SyntheticEvent<HTMLImageElement>): void{
100100
<div className="space-y-2">
101101
<div className="text-xs font-medium lg:text-sm">
102102
<h3>{person[0]}</h3>
103-
<a href={`https://github.com/${person[1]}`} className="text-indigo-600">{person[1]}</a>
103+
<a href={`https://github.com/${person[1]}`} className="text-rose-500">{person[1]}</a>
104104
</div>
105105
</div>
106106
</div>

0 commit comments

Comments
 (0)