-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added abstrac,sponsors and updated the navbar and also changed few co…
…mponents according to sirs needs
- Loading branch information
1 parent
3eef68c
commit d702220
Showing
11 changed files
with
262 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import React from 'react'; | ||
import { motion } from 'framer-motion'; | ||
|
||
const Abstract = () => { | ||
return ( | ||
<section className="py-24 bg-gray-50"> | ||
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"> | ||
<motion.div | ||
initial={{ opacity: 0, y: 20 }} | ||
animate={{ opacity: 1, y: 0 }} | ||
className="bg-white rounded-lg shadow-lg p-8" | ||
> | ||
<h2 className="text-3xl font-bold text-gray-800 mb-8 text-center">Abstract Submission Guidelines</h2> | ||
|
||
<div className="prose max-w-none"> | ||
<h3 className="text-xl font-semibold mb-4">Guidelines:</h3> | ||
<p className="mb-6">Please follow these formatting guidelines for your abstract submission:</p> | ||
|
||
<ul className="space-y-4 list-disc pl-5"> | ||
<li><strong>Abstract Length:</strong> The abstract should be at least 200 words and must fit within one A4 page (21 cm x 29.7 cm).</li> | ||
<li><strong>Page Margins:</strong> Use uniform margins of 2.54 cm on all sides (top, bottom, left, and right).</li> | ||
<li><strong>Font and Spacing:</strong> Use Times New Roman, size 12pt, with single-line spacing.</li> | ||
<li><strong>Title:</strong> The title should be in Times New Roman, size 16pt, bold, and centred. It may span up to two lines and should be followed by one blank line.</li> | ||
<li><strong>Author Names:</strong> List author names in Times New Roman, size 12pt, and centred. Use initials followed by a dot and full family names. Separate multiple authors with commas and mark different affiliations using superscripts if necessary.</li> | ||
<li><strong>Author Affiliations:</strong> Write affiliations in Times New Roman, size 11pt, italics, and centred. For multiple affiliations, place each on a separate line, with the last affiliation followed by two blank lines.</li> | ||
<li><strong>Abstract Text:</strong> The main text should be in Times New Roman, size 12pt, justified on both sides. Do not indent paragraphs, and separate them with one blank line.</li> | ||
</ul> | ||
|
||
<p className="mt-6">Ensure adherence to these guidelines for a consistent and professional presentation.</p> | ||
</div> | ||
|
||
<div className="mt-8 text-center"> | ||
<a | ||
href="https://docs.google.com/document/d/1JyM6HvGLOPve2QhhGxWpQgrXz3RKI4Ni/edit?usp=sharing&ouid=108533967560820556863&rtpof=true&sd=true" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="bg-green-600 text-white px-6 py-3 rounded-lg hover:bg-green-700 transition-colors font-medium inline-block" | ||
> | ||
Download Abstract Template | ||
</a> | ||
</div> | ||
</motion.div> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Abstract; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.