diff --git a/README.md b/README.md
index 2aaf5c1..319aca2 100644
--- a/README.md
+++ b/README.md
@@ -9,13 +9,11 @@ This is the repo for PyConf Hyderabad 2026's website. The 6th edition of the reg
Before you start, ensure you have Node.js and a package manager installed on your machine. Follow these steps:
1. **Download Node.js**:
-
- Visit the [Node.js official website](https://nodejs.org/).
- Download the v20.18.0 version. This was the latest LTS version when the project was created.
- Follow the installation instructions provided on the website.
2. **Verify Installation**:
-
- Open your terminal or command prompt.
- Run the following command to check if Node.js is installed:
```bash
@@ -24,7 +22,6 @@ Before you start, ensure you have Node.js and a package manager installed on you
- You should see the version number of Node.js.
3. **Install a Package Manager**:
-
- Node.js comes with npm (Node Package Manager) by default. To check if npm is installed, run:
```bash
npm -v
@@ -32,7 +29,6 @@ Before you start, ensure you have Node.js and a package manager installed on you
- Alternatively, you can use other package managers like Yarn or pnpm.
4. **Install Dependencies**:
-
- Install the project dependencies using your preferred package manager:
```bash
npm install
@@ -43,7 +39,6 @@ Before you start, ensure you have Node.js and a package manager installed on you
```
5. **Run the Development Server**:
-
- Once Node.js and a package manager are installed, you can start the development server:
```bash
diff --git a/package-lock.json b/package-lock.json
index affdf2c..f58c6d6 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -7,6 +7,7 @@
"": {
"name": "pyconfhyd2026",
"version": "0.1.0",
+ "license": "MIT",
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@next/mdx": "^15.1.3",
@@ -26,6 +27,9 @@
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14"
+ },
+ "engines": {
+ "node": ">=20.18.0"
}
},
"node_modules/@alloc/quick-lru": {
diff --git a/src/app/page.jsx b/src/app/page.jsx
index 328afcd..7320ff4 100644
--- a/src/app/page.jsx
+++ b/src/app/page.jsx
@@ -2,6 +2,7 @@
import { useEffect } from 'react';
import Hero from '@/components/Hero';
+import Journey from '@/components/Journey';
import KeynoteSpeakers from '@/components/KeynoteSpeakers';
import MeetOrganizers from '@/components/MeetOrganizers';
import SponsorsSection from '@/components/Sponsors';
@@ -34,6 +35,7 @@ export default function Home() {
const isMeetOrganizersEnabled = useFeatureFlag('MEET_ORGANIZERS');
const isWhyAttendEnabled = useFeatureFlag('WHY_ATTEND');
const isEpicFramesEnabled = useFeatureFlag('EPIC_FRAMES');
+ const isJourneyEnabled = useFeatureFlag('JOURNEY');
useEffect(() => {
const hash = window.location.hash;
@@ -48,6 +50,7 @@ export default function Home() {
return (
<>
+ {isJourneyEnabled && }
{isKeynoteSpeakersEnabled && (
)}
diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx
index 14a0aca..caaa6a5 100644
--- a/src/components/Hero.jsx
+++ b/src/components/Hero.jsx
@@ -101,7 +101,7 @@ const Hero = () => {
fill
/>
-
+
{/* */}