Skip to content

Commit 9e5a7cf

Browse files
authored
Merge pull request #15 from oslabs-beta/eric/webappfeature
Eric/webappfeature
2 parents 78516b1 + ff61a66 commit 9e5a7cf

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

demo-app/src/client/Router.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ ReactDOM.render(
1212
<BrowserRouter>
1313
<Nav />
1414
<Routes>
15-
<Route path="/tictactoe" element={<Board />}/>
16-
<Route path="/" element={<Home />}/>
17-
<Route path="/buttons" element={<Buttons />}/>
15+
<Route path="/tictactoe" element={<Board />}/>
16+
<Route path="/" element={<Home />}/>
17+
<Route path="/buttons" element={<Buttons />}/>
1818
</Routes>
1919
</BrowserRouter>, root);

src/backend/linkFiber.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ function createTree(
265265
const hooksStates = traverseHooks(memoizedState);
266266
const hooksNames = getHooksNames(elementType.toString());
267267

268+
268269
hooksStates.forEach((state, i) => {
269270
hooksIndex = componentActionsRecord.saveNew(
270271
state.state,

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ 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>
5454
<p className="mx-auto mt-5 max-w-prose text-xl text-gray-500">
55-
Reactime iscd full of features that make your life easier as a developer. From time-travel debugging to state snapshot display, check out how using Reactime will improve your developer experience.
55+
Reactime is full of features that make your life easier as a developer. From time-travel debugging to state snapshot display, check out how using Reactime will improve your developer experience.
5656
</p>
5757
<div className="mt-20">
5858
<div className="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-3">
@@ -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)