Skip to content

Commit

Permalink
update: layout setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Avdhesh-Varshney committed Nov 12, 2024
1 parent eee397f commit 726b6cc
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 38 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
```css
git clone https://github.com/<your-github-username>/WebMasterLog.git
```

4. Navigate to the project directory.
```py
cd WebMasterLog
Expand Down Expand Up @@ -44,7 +44,7 @@ We want your work to be readable by others; therefore, we encourage you to note

1. Directory names should be in `Kebab-Case` letters (e.g., `To-Do-List`, `Joke-Telling-Application`).
2. Add a `README` file in the project directory.
3. Follow the [***PROJECT README TEMPLATE***](./PROJECT-README-TEMPLATE.md).
3. Follow the [***PROJECT README TEMPLATE***](./.github/PROJECT-README-TEMPLATE.md).
4. Include a screenshot of the project. Named to be exact `screenshot.webp`.
5. If you have contributed in `React-JS-Projects`, updates the respective README file and enlist your project there.
6. Don't create more than 3-4 commits until not permitted by Admin and Mentors of the project.
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ignoreBuildStep": "echo 'Ignoring (projects) folder' && rm -rf src/app/\\(projects\\)"
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/angular/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/frontend/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/javascript/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/next/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/node/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/react/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/typescript/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
2 changes: 1 addition & 1 deletion src/app/(category)/vue/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import data from '../../../../data.json';
import data from '../../../database/data.json';
import { ProjectsData } from '../../../types';
import ProjectCard from '../../../components/shared/ProjectCard';

Expand Down
File renamed without changes.
26 changes: 0 additions & 26 deletions vercel.json

This file was deleted.

0 comments on commit 726b6cc

Please sign in to comment.