From 76371e59e8474003438945d90da2d6ea4d6c8398 Mon Sep 17 00:00:00 2001 From: akshaythakur8764 Date: Mon, 23 Dec 2024 14:48:53 +0530 Subject: menu text changed --- src/components/layout/nav-links.json | 3 +- src/pages/evaluation.astro | 76 +++++++++++++++++++++++++++++++++++ src/pages/submission-guidelines.astro | 76 ----------------------------------- 3 files changed, 78 insertions(+), 77 deletions(-) create mode 100644 src/pages/evaluation.astro delete mode 100644 src/pages/submission-guidelines.astro diff --git a/src/components/layout/nav-links.json b/src/components/layout/nav-links.json index 8f6296d..d7312f2 100644 --- a/src/components/layout/nav-links.json +++ b/src/components/layout/nav-links.json @@ -3,7 +3,8 @@ { "label": "About", "href": "/#about" }, {"label": "Problem Statement", "href": "/problem-statement"}, {"label": "Register", "href": "/#register"}, - {"label": "Submission guidelines", "href": "/submission-guidelines"}, + {"label": "Evaluation criteria", "href": "/evaluation"}, + {"label": "System Requirement", "href": "/evaluation#system-reuirement"}, { "label": "Resources", "href": "/resources" }, { "label": "Contact", "href": "/#contact" } diff --git a/src/pages/evaluation.astro b/src/pages/evaluation.astro new file mode 100644 index 0000000..cbc641d --- /dev/null +++ b/src/pages/evaluation.astro @@ -0,0 +1,76 @@ +--- +import Layout from '../layouts/Layout.astro'; +import Card from '../components/Card.astro'; +import Nav from '../components/layout/Nav.astro'; +import HomeBody from '../components/HomeBody.astro'; +--- + + + +
+
+

Evaluation Criteria

+
    +
  • Complexity of the problem, including its technical depth and challenges.  
  • +
  • Quality of the journal, considering its credibility and impact factor.  
  • +
  • Novelty of the topic, focusing on originality and innovation.   
  • +
  • Accuracy of the reproduced results compared to the reference paper.  
  • +
  • Effective and innovative use of Scilab features and toolboxes.  
  • +
  • Readability, proper documentation, and adherence to best coding practices.  
  • +
+
+
+ +
+
+

System Requirements

+ + + + +
+ + +
+

Linux:

+ +
+ + +
+

Mac:

+ +
+ + +
+

Windows:

+
    +
  • OS: Windows 10 or 11

  • +
+

Scilab: Download latest version

+
+ +
+ +
+

General:

+
    +
  • RAM: 4 GB (8 GB recommended)

  • +
  • Processor: Dual-core or higher

  • +
  • Storage: 2 GB free space

  • +
  • Internet: Stable connection

  • +
+
+
+
+ + + +
\ No newline at end of file diff --git a/src/pages/submission-guidelines.astro b/src/pages/submission-guidelines.astro deleted file mode 100644 index 4d611e3..0000000 --- a/src/pages/submission-guidelines.astro +++ /dev/null @@ -1,76 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; -import Nav from '../components/layout/Nav.astro'; -import HomeBody from '../components/HomeBody.astro'; ---- - - - -
-
-

Evaluation Criteria

-
    -
  • Complexity of the problem, including its technical depth and challenges.  
  • -
  • Quality of the journal, considering its credibility and impact factor.  
  • -
  • Novelty of the topic, focusing on originality and innovation.   
  • -
  • Accuracy of the reproduced results compared to the reference paper.  
  • -
  • Effective and innovative use of Scilab features and toolboxes.  
  • -
  • Readability, proper documentation, and adherence to best coding practices.  
  • -
-
-
- -
-
-

System Requirements

- - - - -
- - -
-

Linux:

- -
- - -
-

Mac:

- -
- - -
-

Windows:

-
    -
  • OS: Windows 10 or 11

  • -
-

Scilab: Download latest version

-
- -
- -
-

General:

-
    -
  • RAM: 4 GB (8 GB recommended)

  • -
  • Processor: Dual-core or higher

  • -
  • Storage: 2 GB free space

  • -
  • Internet: Stable connection

  • -
-
-
-
- - - -
\ No newline at end of file -- cgit