Skip to content

Commit

Permalink
Merge pull request #16 from MOHAMMED-IQRAMUL/Iqramul/Contributions
Browse files Browse the repository at this point in the history
Resolving Issue #15
  • Loading branch information
MOHAMMED-IQRAMUL authored Sep 26, 2024
2 parents 22fc4bd + a145749 commit 6f2de57
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 9 deletions.
8 changes: 7 additions & 1 deletion app/ContentSharing/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function ContentSharing() {
return (
<> <Navbar/>
<div>Content Sharing</div>
<Footer/>
</>
)
}

Expand Down
8 changes: 7 additions & 1 deletion app/Discussions/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function Discussions() {
return (
<> <Navbar/>
<div>Discussions</div>
<Footer/>
</>
)
}

Expand Down
9 changes: 8 additions & 1 deletion app/InquireAboutCrops/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';


function InquireAboutCrops() {
return (
<> <Navbar/>
<div>Inquire About Crops</div>
<Footer/>
</>
)
}

Expand Down
8 changes: 7 additions & 1 deletion app/LearningAndResources/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function LearningAndResources() {
return (
<> <Navbar/>
<div>Learning And Resources</div>
<Footer/>
</>
)
}

Expand Down
8 changes: 7 additions & 1 deletion app/PersonalAiSupportBot/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function PersonalAiSupportBot() {
return (
<> <Navbar/>
<div>Personal AI Support Bot</div>
<Footer/>
</>
)
}

Expand Down
8 changes: 7 additions & 1 deletion app/SeasonDashboard/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function SeasonDashboard() {
return (
<> <Navbar/>
<div>Season Dashboard</div>
<Footer/>
</>
)
}

Expand Down
8 changes: 7 additions & 1 deletion app/UserProfiles/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function UserProfiles() {
return (
<> <Navbar/>
<div>User Profiles</div>
<Footer/>
</>
)
}

Expand Down
10 changes: 8 additions & 2 deletions app/WeatherDashboard/page.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import React from 'react'
"use client";
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';

function WeatherDashboard() {
return (
<> <Navbar/>
<div>Weather Dashboard</div>
)
<Footer/>
</>
)
}

export default WeatherDashboard

0 comments on commit 6f2de57

Please sign in to comment.