Skip to content

Commit 781a764

Browse files
committed
fix: add React import to layout.tsx
- Add missing React import to fix ESLint 'React is not defined' error - Ensures proper React component compilation
1 parent 7b7771a commit 781a764

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

app/layout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import type { Metadata } from 'next';
23
import { Inter } from 'next/font/google';
34
import './globals.css';

app/page.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,9 @@ function HomeContent() {
8787
<div className='epic-particle'></div>
8888

8989
<p className='epic-text text-2xl md:text-3xl text-center leading-relaxed'>
90-
Experience the future of decentralized work with the Stellar Nexus Experience on
91-
the Stellar blockchain
90+
Experience the future of Decentralized Technology
9291
</p>
9392

94-
{/* Epic Subtitle */}
95-
<p className='text-brand-300 text-lg text-center mt-4 font-medium animate-pulse'>
96-
✨ Where Trust Meets Innovation ✨
97-
</p>
9893
</div>
9994

10095
<div className='flex justify-center -mb-10 relative group'>
@@ -270,7 +265,14 @@ function HomeContent() {
270265
<p className='text-brand-300/70 text-sm font-medium animate-pulse'>
271266
Powered by <span className='text-brand-200 font-semibold'>Trustless Work</span>
272267
</p>
268+
269+
270+
{/* Epic Subtitle */}
271+
<p className='text-brand-300 text-lg text-center mt-4 font-medium animate-pulse'>
272+
✨ Where Trust Meets Innovation ✨
273+
</p>
273274
</div>
275+
274276
</div>
275277
</section>
276278

0 commit comments

Comments
 (0)