Skip to content

Commit e179a53

Browse files
authored
Merge pull request #89 from techgaun-np/updated-page
2 parents 58eb901 + b993c21 commit e179a53

File tree

139 files changed

+14458
-63138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+14458
-63138
lines changed

.gitignore

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,41 @@
1-
node_modules/
2-
resources/
3-
public/
4-
.hugo_build.lock
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
537
.vercel
6-
yarn-error.log
7-
# Local Netlify folder
8-
.netlify
9-
yarn-error.log
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts

README .md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# irisacademy.edu.np
2+
3+
> Website for Iris Academy, School in Nepal

README.md

Lines changed: 0 additions & 88 deletions
This file was deleted.

app/(public)/about/page.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import AboutContent from "@/components/about/AboutContent";
2+
import TeamSection from "@/components/about/TeamSection";
3+
import JoinCommunityComponent from "@/components/homepage/JoinCommunityComponent";
4+
5+
const page = () => {
6+
return (
7+
<div>
8+
<AboutContent />
9+
<TeamSection />
10+
<JoinCommunityComponent />
11+
</div>
12+
);
13+
};
14+
15+
export default page;

app/(public)/calendar/page.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import CalenderWrapper from "@/components/calender/CalenderWrapper";
2+
import JoinCommunityComponent from "@/components/homepage/JoinCommunityComponent";
3+
import React from "react";
4+
5+
const page = () => {
6+
return (
7+
<div>
8+
<CalenderWrapper />
9+
<JoinCommunityComponent />
10+
</div>
11+
);
12+
};
13+
14+
export default page;

app/(public)/contact/page.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import ContactForm from "@/components/contact/ContactForm";
2+
import ContactInfo from "@/components/contact/ContactInfo";
3+
4+
const page = () => {
5+
return (
6+
<div>
7+
<ContactForm />
8+
<ContactInfo />
9+
</div>
10+
);
11+
};
12+
13+
export default page;

app/(public)/gallery/page.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import GallaryImage from "@/components/gallary/GallaryImage";
2+
import GallaryPageHero from "@/components/gallary/GallaryPageHero";
3+
import JoinCommunityComponent from "@/components/homepage/JoinCommunityComponent";
4+
import React from "react";
5+
6+
const page = () => {
7+
return (
8+
<div>
9+
<GallaryPageHero />
10+
<GallaryImage />
11+
<JoinCommunityComponent />
12+
</div>
13+
);
14+
};
15+
16+
export default page;

app/(public)/page.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import Gallary from "@/components/gallary/Gallary";
2+
import AboutSection from "@/components/homepage/AboutSection";
3+
import AcademySection from "@/components/homepage/AcademySection";
4+
import Hero from "@/components/homepage/Hero";
5+
import JoinCommunityComponent from "@/components/homepage/JoinCommunityComponent";
6+
import PrincipalMessageComponent from "@/components/homepage/PrincipleMessageComponent";
7+
8+
export default function Home() {
9+
return (
10+
<div>
11+
<Hero />
12+
<AboutSection />
13+
<AcademySection />
14+
<PrincipalMessageComponent />
15+
<Gallary />
16+
<JoinCommunityComponent />
17+
</div>
18+
);
19+
}

0 commit comments

Comments
 (0)