├── typescript
├── evening
│ ├── userInput
│ │ ├── sum.js
│ │ └── package.json
│ ├── class10
│ │ ├── sum.js
│ │ ├── index.js
│ │ ├── index.ts
│ │ ├── sum.ts
│ │ └── package.json
│ ├── .DS_Store
│ ├── class09
│ │ ├── .DS_Store
│ │ └── package.json
│ ├── class11
│ │ ├── .DS_Store
│ │ ├── sum.js
│ │ ├── sum.ts
│ │ └── package.json
│ └── class12
│ │ ├── sum.js
│ │ ├── sum.ts
│ │ ├── data.json
│ │ └── package.json
├── class-09-a
│ ├── .gitignore
│ ├── package.json
│ ├── index.ts
│ └── index.js
├── class-08 (Node project starter kit)
│ ├── .gitignore
│ ├── index.ts
│ ├── tsconfig.json
│ ├── index.js
│ └── package.json
├── morning
│ ├── class10
│ │ ├── sum.js
│ │ ├── index.js
│ │ ├── index.ts
│ │ ├── sum.ts
│ │ └── package.json
│ ├── .DS_Store
│ ├── oop
│ │ ├── .DS_Store
│ │ └── package.json
│ ├── types
│ │ ├── .DS_Store
│ │ └── package.json
│ ├── class05
│ │ └── .DS_Store
│ ├── class06
│ │ ├── .DS_Store
│ │ └── gitCommands.txt
│ ├── class07
│ │ └── .DS_Store
│ ├── class08
│ │ ├── .DS_Store
│ │ └── index.js
│ ├── class09
│ │ ├── .DS_Store
│ │ └── package.json
│ ├── class11
│ │ ├── .DS_Store
│ │ ├── sum.js
│ │ ├── sum.ts
│ │ └── package.json
│ ├── class12
│ │ ├── .DS_Store
│ │ ├── sum.js
│ │ ├── sum.ts
│ │ ├── data.json
│ │ └── package.json
│ ├── class01
│ │ ├── index.js
│ │ └── index.ts
│ └── class02
│ │ ├── index.ts
│ │ └── index.js
├── .DS_Store
├── class-02
│ ├── conditions.ts
│ ├── package.json
│ ├── arithmaticOperators.ts
│ ├── assignmentOperators.ts
│ ├── comparisonOperators.ts
│ ├── logicalOperators.ts
│ └── string.ts
├── class-01
│ ├── package.json
│ └── index.ts
├── class-03
│ ├── package.json
│ └── switchCase.ts
├── class-04
│ ├── package.json
│ └── README.md
├── class-05
│ ├── package.json
│ └── index.ts
├── class-07
│ └── package.json
├── class-09
│ └── package.json
└── ATM
│ └── package.json
├── README.md
├── learnnextjs
├── genai-nextjs
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── services
│ │ │ ├── page.tsx
│ │ │ └── layout.tsx
│ │ ├── contact
│ │ │ ├── page.tsx
│ │ │ └── components
│ │ │ │ └── displayContact.tsx
│ │ ├── counter
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── expense
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ ├── button
│ │ │ │ └── button.tsx
│ │ │ ├── tag
│ │ │ │ └── tag.tsx
│ │ │ ├── card
│ │ │ │ └── card.tsx
│ │ │ └── counterSection
│ │ │ │ └── counterSection.tsx
│ │ ├── globals.css
│ │ ├── todos
│ │ │ └── serverRender.tsx
│ │ ├── products
│ │ │ └── page.tsx
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── banner.png
│ │ │ ├── libary.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── config
│ │ └── contentful.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── tsconfig.json
│ ├── types
│ │ ├── commonTypes.ts
│ │ └── componentsTypes.ts
│ └── package.json
├── hello-world
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── contact
│ │ │ └── page.tsx
│ │ ├── about
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── globals.css
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ ├── libary.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── package.json
│ └── tsconfig.json
├── nextjs routes
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── contact
│ │ │ ├── ceo
│ │ │ │ └── page.tsx
│ │ │ └── page.tsx
│ │ ├── about
│ │ │ └── page.tsx
│ │ ├── services
│ │ │ ├── web
│ │ │ │ └── page.tsx
│ │ │ ├── layout.tsx
│ │ │ ├── mobile
│ │ │ │ └── page.tsx
│ │ │ └── page.tsx
│ │ ├── page.tsx
│ │ ├── layout.tsx
│ │ ├── blog
│ │ │ └── [slug]
│ │ │ │ └── page.tsx
│ │ ├── login
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ └── button.tsx
│ │ ├── globals.css
│ │ └── api
│ │ │ └── auth
│ │ │ └── [...nextauth]
│ │ │ └── route.ts
│ ├── .env
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ ├── libary.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── middleware.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── package.json
│ └── tsconfig.json
├── next-form-handling
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── contact
│ │ │ ├── page.tsx
│ │ │ └── components
│ │ │ │ └── displayContact.tsx
│ │ ├── counter
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── components
│ │ │ ├── button
│ │ │ │ └── button.tsx
│ │ │ ├── tag
│ │ │ │ └── tag.tsx
│ │ │ ├── card
│ │ │ │ └── card.tsx
│ │ │ └── counterSection
│ │ │ │ └── counterSection.tsx
│ │ ├── services
│ │ │ └── page.tsx
│ │ ├── globals.css
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ ├── libary.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── types
│ │ ├── componentsTypes.ts
│ │ └── commonTypes.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── tsconfig.json
│ └── package.json
├── html
│ ├── style.css
│ ├── script.js
│ ├── .DS_Store
│ └── index.html
├── nextjs - reactjs concepts
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── counter
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── contact
│ │ │ ├── components
│ │ │ │ └── contactForm.tsx
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ ├── button
│ │ │ │ └── button.tsx
│ │ │ ├── tag
│ │ │ │ └── tag.tsx
│ │ │ ├── card
│ │ │ │ └── card.tsx
│ │ │ └── counterSection
│ │ │ │ └── counterSection.tsx
│ │ ├── services
│ │ │ └── page.tsx
│ │ ├── globals.css
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── banner.png
│ │ │ ├── food.png
│ │ │ ├── libary.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── types
│ │ ├── commonTypes.ts
│ │ └── componentsTypes.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── package.json
│ └── tsconfig.json
├── nextjs-api-integerate
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── services
│ │ │ ├── page.tsx
│ │ │ └── layout.tsx
│ │ ├── contact
│ │ │ ├── page.tsx
│ │ │ └── components
│ │ │ │ └── displayContact.tsx
│ │ ├── counter
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── expense
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ ├── button
│ │ │ │ └── button.tsx
│ │ │ ├── tag
│ │ │ │ └── tag.tsx
│ │ │ ├── card
│ │ │ │ └── card.tsx
│ │ │ └── counterSection
│ │ │ │ └── counterSection.tsx
│ │ ├── globals.css
│ │ ├── todos
│ │ │ └── serverRender.tsx
│ │ ├── products
│ │ │ └── page.tsx
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ ├── libary.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── config
│ │ └── contentful.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── tsconfig.json
│ ├── types
│ │ ├── commonTypes.ts
│ │ └── componentsTypes.ts
│ └── package.json
├── nextjs-backend-routes
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── contact
│ │ │ ├── page.tsx
│ │ │ └── components
│ │ │ │ └── displayContact.tsx
│ │ ├── counter
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── components
│ │ │ ├── button
│ │ │ │ └── button.tsx
│ │ │ ├── tag
│ │ │ │ └── tag.tsx
│ │ │ ├── card
│ │ │ │ └── card.tsx
│ │ │ └── counterSection
│ │ │ │ └── counterSection.tsx
│ │ ├── services
│ │ │ └── page.tsx
│ │ ├── globals.css
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ ├── libary.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── types
│ │ ├── componentsTypes.ts
│ │ └── commonTypes.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── tsconfig.json
│ └── package.json
├── nextjs-expense-tracker
│ ├── README.md
│ ├── .eslintrc.json
│ ├── app
│ │ ├── test.ts
│ │ ├── favicon.ico
│ │ ├── contact
│ │ │ ├── page.tsx
│ │ │ └── components
│ │ │ │ └── displayContact.tsx
│ │ ├── counter
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── expense
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ ├── button
│ │ │ │ └── button.tsx
│ │ │ ├── tag
│ │ │ │ └── tag.tsx
│ │ │ ├── card
│ │ │ │ └── card.tsx
│ │ │ └── counterSection
│ │ │ │ └── counterSection.tsx
│ │ ├── services
│ │ │ └── page.tsx
│ │ ├── globals.css
│ │ └── page.tsx
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── img
│ │ │ ├── food.png
│ │ │ ├── post.png
│ │ │ ├── user.png
│ │ │ ├── about.png
│ │ │ ├── back1.png
│ │ │ ├── banner.png
│ │ │ ├── libary.png
│ │ │ ├── Campus1.png
│ │ │ ├── Campus2.png
│ │ │ ├── Campus3.png
│ │ │ ├── banner1.png
│ │ │ ├── course1.png
│ │ │ ├── course2.png
│ │ │ ├── course3.png
│ │ │ └── playground.png
│ │ └── vercel.svg
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── tsconfig.json
│ ├── types
│ │ ├── commonTypes.ts
│ │ └── componentsTypes.ts
│ └── package.json
├── flex-box
│ ├── .eslintrc.json
│ ├── next.config.js
│ ├── postcss.config.js
│ ├── src
│ │ ├── constants
│ │ │ └── images.ts
│ │ └── app
│ │ │ ├── favicon.ico
│ │ │ ├── globals.css
│ │ │ └── layout.tsx
│ ├── public
│ │ ├── New Project.png
│ │ └── vercel.svg
│ ├── tailwind.config.ts
│ ├── .gitignore
│ ├── package.json
│ └── tsconfig.json
├── class5 styling
│ └── styling
│ │ ├── .eslintrc.json
│ │ ├── src
│ │ └── app
│ │ │ ├── globals.css
│ │ │ ├── favicon.ico
│ │ │ ├── layout.tsx
│ │ │ └── page.tsx
│ │ ├── next.config.js
│ │ ├── postcss.config.js
│ │ ├── .gitignore
│ │ ├── tailwind.config.ts
│ │ ├── public
│ │ └── vercel.svg
│ │ ├── package.json
│ │ └── tsconfig.json
├── .DS_Store
└── next-redux
│ ├── next.config.mjs
│ ├── postcss.config.js
│ ├── app
│ ├── favicon.ico
│ ├── dashboard
│ │ ├── page.tsx
│ │ ├── accounts
│ │ │ └── page.tsx
│ │ └── layout.tsx
│ ├── services
│ │ └── page.tsx
│ ├── layout.tsx
│ ├── components
│ │ └── counterApp.tsx
│ ├── page.tsx
│ └── globals.css
│ ├── store
│ ├── store.ts
│ └── slices
│ │ ├── counterSlice.ts
│ │ └── serviceSlice.ts
│ ├── .gitignore
│ ├── tailwind.config.ts
│ ├── public
│ └── vercel.svg
│ ├── package.json
│ └── tsconfig.json
├── .DS_Store
├── .gitignore
└── html
├── assets
└── pic.png
└── style.css
/typescript/evening/userInput/sum.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Panaverse-Faisalabad-batch-50
--------------------------------------------------------------------------------
/typescript/class-09-a/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/hello-world/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/typescript/class-08 (Node project starter kit)/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/learnnextjs/html/style.css:
--------------------------------------------------------------------------------
1 | #heading{
2 | background-color: rebeccapurple;
3 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/README.md:
--------------------------------------------------------------------------------
1 | ##Our first nextjs project
2 |
3 |
--------------------------------------------------------------------------------
/learnnextjs/flex-box/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/hello-world/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/.DS_Store
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/class5 styling/styling/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/learnnextjs/hello-world/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/typescript/evening/class10/sum.js:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 15;
3 | var c = a + b;
4 | export default c;
5 |
--------------------------------------------------------------------------------
/typescript/morning/class10/sum.js:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 15;
3 | var c = a + b;
4 | export default c;
5 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /*/node_modules
3 | /**/node_modules
4 |
5 |
6 | /.next
7 | /*/.next
8 | /**/.next
--------------------------------------------------------------------------------
/learnnextjs/html/script.js:
--------------------------------------------------------------------------------
1 | var heading = document.getElementById("heading");
2 | heading.innerHTML="Hello World"
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/typescript/evening/class10/index.js:
--------------------------------------------------------------------------------
1 | import c from "./sum.js";
2 | var d = c + 5;
3 | console.log("d = ", d);
4 |
--------------------------------------------------------------------------------
/typescript/morning/class10/index.js:
--------------------------------------------------------------------------------
1 | import c from "./sum.js";
2 | var d = c + 5;
3 | console.log("d = ", d);
4 |
--------------------------------------------------------------------------------
/html/assets/pic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/html/assets/pic.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/.env:
--------------------------------------------------------------------------------
1 | NO_SECRET="dsafjk#@4LKJDF@#$LS:KDFkSDFSDF"
2 | NEXTAUTH_URL="http://localhost:3000/"
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/learnnextjs/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/.DS_Store
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/app/test.ts:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 20;
3 | export {a, b}
4 | export default a;
--------------------------------------------------------------------------------
/typescript/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/.DS_Store
--------------------------------------------------------------------------------
/learnnextjs/class5 styling/styling/src/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/learnnextjs/html/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/html/.DS_Store
--------------------------------------------------------------------------------
/typescript/class-02/conditions.ts:
--------------------------------------------------------------------------------
1 | // syntax
2 | /*
3 | if(condition true/false){
4 | block of code;
5 | }
6 | */
7 |
8 |
--------------------------------------------------------------------------------
/typescript/evening/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/evening/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/.DS_Store
--------------------------------------------------------------------------------
/learnnextjs/flex-box/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/flex-box/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/hello-world/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/hello-world/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/next-redux/next.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {};
3 |
4 | export default nextConfig;
5 |
--------------------------------------------------------------------------------
/learnnextjs/next-redux/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/typescript/morning/oop/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/oop/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/types/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/types/.DS_Store
--------------------------------------------------------------------------------
/learnnextjs/flex-box/src/constants/images.ts:
--------------------------------------------------------------------------------
1 | import logo from "./../../public/New Project.png";
2 | export const IMAGES = [logo, logo, logo, logo];
3 |
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/typescript/evening/class09/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/evening/class09/.DS_Store
--------------------------------------------------------------------------------
/typescript/evening/class11/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/evening/class11/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class05/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class05/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class06/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class06/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class07/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class07/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class08/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class08/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class09/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class09/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class11/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class11/.DS_Store
--------------------------------------------------------------------------------
/typescript/morning/class12/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/typescript/morning/class12/.DS_Store
--------------------------------------------------------------------------------
/learnnextjs/class5 styling/styling/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/class5 styling/styling/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/hello-world/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/next-redux/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-redux/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/flex-box/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/flex-box/src/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/flex-box/public/New Project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/flex-box/public/New Project.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/contact/ceo/page.tsx:
--------------------------------------------------------------------------------
1 | export default function ABC (){
2 | return (
3 |
4 |
CEO
5 |
6 | )
7 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/hello-world/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/about/page.tsx:
--------------------------------------------------------------------------------
1 | export default function About (){
2 | return (
3 |
4 |
About
5 |
6 | )
7 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/app/favicon.ico
--------------------------------------------------------------------------------
/html/style.css:
--------------------------------------------------------------------------------
1 | p {
2 | background-color: black;
3 | color: red;
4 | }
5 |
6 | .text-center {
7 | /* background-color: white; */
8 | text-align: center;
9 | }
10 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/genai-nextjs/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/next-redux/app/dashboard/page.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export default function Dashboard() {
4 | return (
5 | Dashboard
6 | )
7 | }
8 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | export default function ABC (){
2 | return (
3 |
4 |
Contact
5 |
6 | )
7 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs routes/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/class5 styling/styling/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/class5 styling/styling/src/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/next-redux/app/dashboard/accounts/page.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export default function Accounts() {
4 | return (
5 | Accounts
6 | )
7 | }
8 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/app/favicon.ico
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/services/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | export default function Services() {
3 | return (
4 |
5 |
Services
6 |
7 | )
8 | }
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/next-form-handling/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/services/web/page.tsx:
--------------------------------------------------------------------------------
1 | export default function Web(){
2 | return (
3 |
4 |
Services / web
5 |
6 | )
7 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/hello-world/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | function Contact (){
2 | return (
3 |
4 | contact page
5 |
6 | )
7 | }
8 |
9 | export default Contact
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/about.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/back1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/back1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/banner.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/food.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/libary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/libary.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/post.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/user.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-api-integerate/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-backend-routes/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/course3.png
--------------------------------------------------------------------------------
/typescript/evening/class11/sum.js:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 15;
3 | function sumFun(a, b) {
4 | var c = a + b;
5 | return c;
6 | }
7 | export { a, b, sumFun, };
8 | export default sumFun;
9 |
--------------------------------------------------------------------------------
/typescript/evening/class12/sum.js:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 15;
3 | function sumFun(a, b) {
4 | var c = a + b;
5 | return c;
6 | }
7 | export { a, b, sumFun, };
8 | export default sumFun;
9 |
--------------------------------------------------------------------------------
/typescript/morning/class11/sum.js:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 15;
3 | function sumFun(a, b) {
4 | var c = a + b;
5 | return c;
6 | }
7 | export { a, b, sumFun, };
8 | export default sumFun;
9 |
--------------------------------------------------------------------------------
/typescript/morning/class12/sum.js:
--------------------------------------------------------------------------------
1 | var a = 10;
2 | var b = 15;
3 | function sumFun(a, b) {
4 | var c = a + b;
5 | return c;
6 | }
7 | export { a, b, sumFun, };
8 | export default sumFun;
9 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/Campus1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/Campus1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/Campus2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/Campus2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/Campus3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/Campus3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/banner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/banner1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/course1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/course1.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/course2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/course2.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/course3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/course3.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/services/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | export default function Services() {
3 | return (
4 |
5 |
Services
6 |
7 | )
8 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs-expense-tracker/public/img/playground.png
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/public/img/playground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AbuHurairah127/Panaverse-Faisalabad-batch-50/HEAD/learnnextjs/nextjs - reactjs concepts/public/img/playground.png
--------------------------------------------------------------------------------
/typescript/morning/class01/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | var userName = "Naveed";
3 | var a = 10;
4 | var b = 3;
5 | var c = 5;
6 | var result = a + b + c;
7 | var newResult = result + a;
8 | console.log(newResult);
9 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/services/layout.tsx:
--------------------------------------------------------------------------------
1 | export default function ServicesLayout({children}){
2 | return (
3 |
4 |
services level layout
5 | {children}
6 |
7 | )
8 | }
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/middleware.ts:
--------------------------------------------------------------------------------
1 | import { withAuth } from "next-auth/middleware"
2 |
3 | export default withAuth(
4 | {
5 | secret:"dsafjk#@4LKJDF@#$LS:KDFkSDFSDF"
6 | }
7 | )
8 |
9 | export const config = { matcher: ["/services"] }
--------------------------------------------------------------------------------
/typescript/evening/class10/index.ts:
--------------------------------------------------------------------------------
1 |
2 | import sum from "./sum.js";
3 | import {a,b, sumFun} from "./sum.js"
4 |
5 |
6 | var d:number = sum(10,20) + 5;
7 |
8 |
9 |
10 | console.log("d = ", d);
11 |
12 | export default d;
13 |
14 |
15 |
--------------------------------------------------------------------------------
/typescript/morning/class10/index.ts:
--------------------------------------------------------------------------------
1 |
2 | import sum from "./sum.js";
3 | import {a,b, sumFun} from "./sum.js"
4 |
5 |
6 | var d:number = sum(10,20) + 5;
7 |
8 |
9 |
10 | console.log("d = ", d);
11 |
12 | export default d;
13 |
14 |
15 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs routes/app/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | export default function HOme() {
3 | return (
4 |
5 |
6 |
7 |
8 | Home Home
9 |
10 |
11 |
12 | )
13 | }
--------------------------------------------------------------------------------
/learnnextjs/hello-world/app/about/page.tsx:
--------------------------------------------------------------------------------
1 | import Link from "next/link"
2 | function About (){
3 | return (
4 |
7 | )
8 | }
9 |
10 | export default About
--------------------------------------------------------------------------------
/typescript/morning/class01/index.ts:
--------------------------------------------------------------------------------
1 | var userName:string = "Naveed";
2 | var a:number = 10;
3 | var b:number = 3;
4 | var c:number = 5;
5 | var result:number = a + b + c;
6 | var newResult:number = result + a;
7 |
8 | console.log(newResult);
9 |
10 |
11 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | import ContactForm from "./components/contactForm";
2 |
3 | export default function Contact() {
4 | return (
5 |
6 |
7 |
Contact
8 |
9 |
10 | )
11 | }
12 |
--------------------------------------------------------------------------------
/typescript/class-08 (Node project starter kit)/index.ts:
--------------------------------------------------------------------------------
1 | import inquirer from "inquirer";
2 |
3 | const answer = await inquirer.prompt({
4 | name: "answer",
5 | message: "Are you sure?",
6 | type: "confirm",
7 | });
8 |
9 | console.log(typeof answer.answer);
10 |
--------------------------------------------------------------------------------
/typescript/evening/class10/sum.ts:
--------------------------------------------------------------------------------
1 | var a: number = 10;
2 | var b: number = 15;
3 | function sumFun(a: number, b: number) {
4 |
5 | var c: number = a + b;
6 | return c
7 | }
8 | export {
9 | a,
10 | b,
11 | sumFun,
12 |
13 | }
14 | export default sumFun;
--------------------------------------------------------------------------------
/typescript/evening/class11/sum.ts:
--------------------------------------------------------------------------------
1 | var a: number = 10;
2 | var b: number = 15;
3 | function sumFun(a: number, b: number) {
4 |
5 | var c: number = a + b;
6 | return c
7 | }
8 | export {
9 | a,
10 | b,
11 | sumFun,
12 |
13 | }
14 | export default sumFun;
--------------------------------------------------------------------------------
/typescript/evening/class12/sum.ts:
--------------------------------------------------------------------------------
1 | var a: number = 10;
2 | var b: number = 15;
3 | function sumFun(a: number, b: number) {
4 |
5 | var c: number = a + b;
6 | return c
7 | }
8 | export {
9 | a,
10 | b,
11 | sumFun,
12 |
13 | }
14 | export default sumFun;
--------------------------------------------------------------------------------
/typescript/morning/class10/sum.ts:
--------------------------------------------------------------------------------
1 | var a: number = 10;
2 | var b: number = 15;
3 | function sumFun(a: number, b: number) {
4 |
5 | var c: number = a + b;
6 | return c
7 | }
8 | export {
9 | a,
10 | b,
11 | sumFun,
12 |
13 | }
14 | export default sumFun;
--------------------------------------------------------------------------------
/typescript/morning/class11/sum.ts:
--------------------------------------------------------------------------------
1 | var a: number = 10;
2 | var b: number = 15;
3 | function sumFun(a: number, b: number) {
4 |
5 | var c: number = a + b;
6 | return c
7 | }
8 | export {
9 | a,
10 | b,
11 | sumFun,
12 |
13 | }
14 | export default sumFun;
--------------------------------------------------------------------------------
/typescript/morning/class12/sum.ts:
--------------------------------------------------------------------------------
1 | var a: number = 10;
2 | var b: number = 15;
3 | function sumFun(a: number, b: number) {
4 |
5 | var c: number = a + b;
6 | return c
7 | }
8 | export {
9 | a,
10 | b,
11 | sumFun,
12 |
13 | }
14 | export default sumFun;
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | import ContactForm from "./components/contactForm";
2 |
3 | export default function Contact() {
4 | return (
5 |
6 |
7 |
Contact
8 |
9 |
10 | )
11 | }
12 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | import ContactForm from "./components/contactForm";
2 |
3 | export default function Contact() {
4 | return (
5 |
6 |
7 |
Contact
8 |
9 |
10 | )
11 | }
12 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | import ContactForm from "./components/contactForm";
2 |
3 | export default function Contact() {
4 | return (
5 |
6 |
7 |
Contact
8 |
9 |
10 | )
11 | }
12 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/app/contact/page.tsx:
--------------------------------------------------------------------------------
1 | import ContactForm from "./components/contactForm";
2 |
3 | export default function Contact() {
4 | return (
5 |
6 |
7 |
Contact
8 |
9 |
10 | )
11 | }
12 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/services/layout.tsx:
--------------------------------------------------------------------------------
1 | export default function ServiceLayout({
2 | children,
3 | }: {
4 | children: React.ReactNode
5 | }) {
6 | return (
7 |
8 |
9 | {children}
10 |
11 |
12 | )
13 | }
--------------------------------------------------------------------------------
/typescript/morning/class12/data.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id":1,
4 | "name":"Naveed",
5 | "rollNo":324,
6 | "age": 27
7 | },
8 |
9 | {
10 | "id":2,
11 | "name":"Naveed",
12 | "rollNo":324,
13 | "age": 27
14 | }
15 | ]
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/services/layout.tsx:
--------------------------------------------------------------------------------
1 | export default function ServiceLayout({
2 | children,
3 | }: {
4 | children: React.ReactNode
5 | }) {
6 | return (
7 |
8 |
9 | {children}
10 |
11 |
12 | )
13 | }
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/counter/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | import CounterSection from "../components/counterSection/counterSection"
3 |
4 | export default function Counter() {
5 |
6 |
7 | return (
8 |
9 |
Counter
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/config/contentful.ts:
--------------------------------------------------------------------------------
1 | const contentful = require('contentful')
2 | export const client = contentful.createClient({
3 | space: 'v8k6p0iq2x0f',
4 | environment: 'master', // defaults to 'master' if not set
5 | accessToken: '-GazxxGFd18zDCDqm-mGlX858lud6v_g5rHJmQf7nAk'
6 | })
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "./globals.css"
2 | export default function RootLayout({
3 | children,
4 | }: {
5 | children: React.ReactNode
6 | }) {
7 | return (
8 |
9 |
10 | {children}
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/typescript/class-01/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-01",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/typescript/class-02/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-02",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/typescript/class-03/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-03",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/typescript/class-04/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-04",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/typescript/class-05/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-05",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/typescript/class-07/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-07",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/typescript/class-09/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "class-8",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC"
12 | }
13 |
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/app/counter/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | import CounterSection from "../components/counterSection/counterSection"
3 |
4 | export default function Counter() {
5 |
6 |
7 | return (
8 |
9 |
Counter
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/counter/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | import CounterSection from "../components/counterSection/counterSection"
3 |
4 | export default function Counter() {
5 |
6 |
7 | return (
8 |
9 |
Counter
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/config/contentful.ts:
--------------------------------------------------------------------------------
1 | const contentful = require('contentful')
2 | export const client = contentful.createClient({
3 | space: 'v8k6p0iq2x0f',
4 | environment: 'master', // defaults to 'master' if not set
5 | accessToken: '-GazxxGFd18zDCDqm-mGlX858lud6v_g5rHJmQf7nAk'
6 | })
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/app/counter/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | import CounterSection from "../components/counterSection/counterSection"
3 |
4 | export default function Counter() {
5 |
6 |
7 | return (
8 |
9 |
Counter
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/app/counter/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | import CounterSection from "../components/counterSection/counterSection"
3 |
4 | export default function Counter() {
5 |
6 |
7 | return (
8 |
9 |
Counter
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/learnnextjs/next-form-handling/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "./globals.css"
2 | export default function RootLayout({
3 | children,
4 | }: {
5 | children: React.ReactNode
6 | }) {
7 | return (
8 |
9 |
10 | {children}
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/app/counter/page.tsx:
--------------------------------------------------------------------------------
1 |
2 | import CounterSection from "../components/counterSection/counterSection"
3 |
4 | export default function Counter() {
5 |
6 |
7 | return (
8 |
9 |
Counter
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "./globals.css"
2 | export default function RootLayout({
3 | children,
4 | }: {
5 | children: React.ReactNode
6 | }) {
7 | return (
8 |
9 |
10 | {children}
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-backend-routes/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "./globals.css"
2 | export default function RootLayout({
3 | children,
4 | }: {
5 | children: React.ReactNode
6 | }) {
7 | return (
8 |
9 |
10 | {children}
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-expense-tracker/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "./globals.css"
2 | export default function RootLayout({
3 | children,
4 | }: {
5 | children: React.ReactNode
6 | }) {
7 | return (
8 |
9 |
10 | {children}
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/learnnextjs/genai-nextjs/app/expense/page.tsx:
--------------------------------------------------------------------------------
1 | import ExpenseList from "../components/expenseList/expenseList"
2 | export default function Expense() {
3 | return (
4 |
5 |
Expense Tracker App
6 |
7 |
8 | )
9 | }
10 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "./globals.css"
2 | export default function RootLayout({
3 | children,
4 | }: {
5 | children: React.ReactNode
6 | }) {
7 | return (
8 |
9 |
10 | {children}
11 |
12 |
13 | )
14 | }
15 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs-api-integerate/app/expense/page.tsx:
--------------------------------------------------------------------------------
1 | import ExpenseList from "../components/expenseList/expenseList"
2 | export default function Expense() {
3 | return (
4 |
5 |
Expense Tracker App
6 |
7 |
8 | )
9 | }
10 |
--------------------------------------------------------------------------------
/learnnextjs/nextjs - reactjs concepts/app/contact/components/contactForm.tsx:
--------------------------------------------------------------------------------
1 | "use client"
2 | import Button from "@/app/components/button/button";
3 |
4 | export default function ContactForm() {
5 |
6 | return (
7 |