Difference between revisions of "Talk:CNMCyber.com Home"

From CNM Wiki
Jump to: navigation, search
 
(32 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{| class="wikitable" style="background-color: #87CEEB;" width="100%"
+
[[FMC-13]]
  
|style="border: none; border-radius: 50%; width: 200px; height: 200px; text-align: center; vertical-align: middle;"|
+
Hereinafter, the main page is called the ''Prototype page''; its development is called the ''Project''. The ''Project'' is included in [[CNM Website Projects]] and occurs under the [[Website for CNMCyber]] endeavor.
[[File:Cyber logo.png|link=CNMCyber.com_Home_(prototype)|400px]]
 
|style="border: none; border-radius: 50%; width: 200px; height: 200px; text-align: center; vertical-align: middle;"|
 
[[Search CNMCyber|<span style="font-size: 15px; padding: 10px 20px; background-color: #87CEEB; color: white;">Search&nbsp;CNMCyber</span>]]
 
|style="border: none; border-radius: 50%; width: 200px; height: 200px; text-align: center; vertical-align: middle;"|
 
[[CNMCyber.com About-us (prototype)|<span style="font-size: 15px; padding: 10px 20px; background-color: #87CEEB; color: white;">About&nbsp;us</span>]]
 
|style="border: none; border-radius: 50%; width: 200px; height: 200px; text-align: center; vertical-align: middle;"|
 
[[CNMCyber.com Services (prototype)|<span style="font-size: 15px; padding: 10px 20px; background-color: #87CEEB; color: white;">Services</span>]]
 
|style="border: none; border-radius: 50%; width: 200px; height: 200px; text-align: center; vertical-align: middle;"|
 
[[CNMCyber.com Login (prototype)|<span style="font-size: 15px; padding: 10px 20px; background-color: #00008B; color: white;">LogIn</span>]]
 
  
|}
 
  
 +
==Requirements==
 +
===Business===
 +
*The Board needs to develop a prototype for CNMCyber.com Home that would be used to further develop requirements for cnmcyber.com Home that would be used by contractors to develop cnmcyber.com website.
 +
 +
===Stakeholder's===
 +
:'''Home page'''
 +
*As a coordinator developing requirements for CNMCyber.com home prototype, I want to see prototype home page design, layout and content structure that I would use to develop requirements for cnmcyber.com Home website pages.
 +
*As a coordinator developing requirements for CNMCyber.com home prototype, I want to see main sections such as the header, hero section, featured services, about us section, testimonials, and footer section.
 +
:'''Navigation and Menu'''
 +
*As a coordinator developing requirements for cnmcyber.com home, I want to be able to navigate to the various prototype wiki pages.
 +
*As a coordinator developing requirements for cnmcyber.com home, I want to be able to view main menu items and drop down menu items.
 +
:'''Content'''
 +
*As a coordinator developing requirements for cnmcyber.com home, I want to see prototype public text such as services, testimonials that I would use to develop requirements for cnmcyber.com home
 +
*As a coordinator developing requirements for cnmcyber.com home, I want to be able to see text formats and content layout
 +
:'''Call-to-Action'''
 +
*As a coordinator developing requirements for cnmcyber.com home, I want to be able to see call-to action buttons.
 +
*As a coordinator developing requirements for cnmcyber.com home, I want to be able to see call-to action buttons strategic positioning to encourage user engagement
 +
 +
==Sprints==
 +
===#1 (Mariam)===
 +
: [[File:Wireframe-mobile.PNG|The first wireframe by Mariam, 2020|200px|thumb|right]]Mariam created the first wireframe in early 2020.
 +
 +
===#2 (Gary)===
 +
: In 2021, Gary updated the wireframe and moved it in the [[SVG]] format. Later, he hired designers to create a graphic representation.
 +
 +
===#3 (Erastus, Kevin)===
 +
: In 2023, Erastus and Kevin are working on developing requirements and a prototype wiki website for cnmcyber.com Home (prototype)
 +
 +
===CNMCyber.com Code===
 +
<!DOCTYPE html>
 +
<html lang="en">
 +
<head>
 +
    <meta charset="UTF-8">
 +
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 +
    <title>Welcome to CNMCyber</title>
 +
    <style>
 +
        /* Color scheme */
 +
        :root {
 +
            --primary-color: #2c3e50;
 +
            --secondary-color: #e67e22;
 +
            --accent-color: #d35400;
 +
            --light-color: #ecf0f1;
 +
            --dark-color: #34495e;
 +
            --title-color: #001f3f; /* Dark blue color for the title */
 +
            --button-color: #001f3f; /* Dark blue color for the buttons */
 +
        }
 +
 +
        body {
 +
            font-family: Arial, sans-serif;
 +
            margin: 0;
 +
            padding: 0;
 +
            background-color: var(--light-color);
 +
            color: var(--dark-color);
 +
        }
 +
 +
        header {
 +
            background-color: var(--primary-color);
 +
            color: var(--light-color);
 +
            padding: 40px;
 +
            text-align: center;
 +
        }
 +
 +
        main {
 +
            max-width: 800px;
 +
            margin: 0 auto;
 +
            padding: 20px;
 +
        }
 +
 +
        section {
 +
            margin-bottom: 30px;
 +
            text-align: center;
 +
        }
 +
 +
        h1, h2 {
 +
            color: var(--primary-color);
 +
        }
 +
 +
        a {
 +
            color: var(--accent-color);
 +
            text-decoration: none;
 +
        }
 +
 +
        a:hover {
 +
            text-decoration: underline;
 +
        }
 +
 +
        button {
 +
            background-color: var(--button-color);
 +
            color: var(--light-color);
 +
            padding: 12px 24px;
 +
            border: none;
 +
            border-radius: 4px;
 +
            cursor: pointer;
 +
            transition: background-color 0.3s ease;
 +
            font-size: 16px;
 +
            margin-top: 10px;
 +
        }
 +
 +
        button:hover {
 +
            background-color: var(--accent-color);
 +
        }
  
<div style="background-color:#fff4e7;padding-top:100px;padding-bottom:300px;">
+
        .hero {
  <div style="float:left;width:60%;padding-top:40px"><p style="padding-left:50px">'''Welcome to our Cyber. Let's....'''</p></div>
+
            position: relative;
 +
            height: 400px; /* Adjust the height as needed */
 +
            background-image: url('http://social.cnmcyber.com/file/file/download?guid=85df6190-8b47-406e-ad65-cc8bf07f209e&hash_sha1=5bc90720');
 +
            background-size: cover;
 +
            background-position: center;
 +
            background-repeat: no-repeat;
 +
            background-size: 120% auto;
 +
        }
  
  <div style="float:left;">
+
        .hero-content {
    <div class="wds-button" style="background-color:#27221f00;border:1px solid black;padding:10px 50px 10px 50px;margin-bottom:10px">'''[[Read the intro|link=https://social.cnmcyber.com/s/welcome/|]] >'''</div>
+
            position: absolute;
  <div class="wds-button" style="background-color:#27221f00;border:1px solid black;padding:10px 50px 10px 50px">'''Watch the video >'''</div>
+
            bottom: 0;
  </div>
+
            left: 50%;
</div>
+
            transform: translateX(-50%);
 +
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
 +
            padding: 20px;
 +
            text-align: center;
 +
        }
  
 +
        .hero h1, .hero p {
 +
            color: var(--light-color);
 +
            margin: 0;
 +
        }
  
==Requirements==
+
        .about {
===Business requirement===
+
            text-align: center;
[[Business requirement]] is a high-level business rationale that, when addressed, will allow the firm to generate revenue, reduce costs, improve service, or satisfy regulatory requirements.
+
        }
:CNMCyber.com [[Business requirement]]s are:
 
:#('''primary''') [[CNMCyber]] needs to provide a centralized hub where all the [[career service]]s offered by [[CNMCyber]] will be delivered to the general public.
 
:#('''secondary''') Generate revenue through services such as paid Career counseling. i.e this services will aim to guide individuals through the intricate process of navigating their professional paths, assisting them in making informed decisions, developing essential skills, exploring various job opportunities, and ultimately assist them to achieve their desired career objectives
 
:#Attract volunteers with expertise in various areas to contribute to [[CNMCyber]]'s career services and enhance their impact.
 
:#Attract strategic partners such as educational institutions, employment agencies, and government organizations, to collaborate and amplify the impact of their career services.
 
:#Connect employers to potential employees
 
:#Connect people in the job market to potential employers
 
  
===Partners===
+
        .about p {
===Employers===
+
            margin-bottom: 10px;
===Net Anyone===
+
        }
===Workers===
 
:Workers can be divided into two categories;
 
:#*''Current workers'' such as employees, employment candidates,
 
:#*''Potential workers'' such as school students
 
===Volunteers===
 
===Customers===
 
  
 +
        .footer-image {
 +
            text-align: center;
 +
            margin-top: 40px;
 +
        }
  
 +
        .footer-image img {
 +
            max-width: 100%;
 +
            height: auto;
 +
        }
 +
    </style>
 +
</head>
 +
<body>
 +
    <header>
 +
        <h1>Welcome to CNMCyber</h1>
 +
        <p>Your Launchpad to Career Success!</p>
 +
    </header>
 +
    <main>
 +
        <div class="hero">
 +
            <div class="hero-content">
 +
                <h1>Welcome to CNMCyber</h1>
 +
                <p>Your Launchpad to Career Success!</p>
 +
            </div>
 +
        </div>
 +
        <section class="about">
 +
            <h2>About CNMCyber</h2>
 +
            <p>Whether you're just exploring, starting out, seeking to enhance your credentials, or ready to mentor others, our career network ecosystem provides a supportive environment to help you grow, learn, and thrive in your professional journey.</p>
 +
            <p>At <strong>CNMCyber.com</strong>, you can join practice communities that align with your professional interests. If you are undecided, our pre-entry-level jobs are specially designed to help you discover your vocation. For answers to your questions without registration, visit <a href="https://www.kenyax.com/careers" target="_blank">kenyax.com/careers</a> or <a href="https://www.youtube.com/@ainurtz" target="_blank">youtube.com/@ainurtz</a>.</p>
 +
        </section>
 +
        <section>
 +
            <h2>Who We Are</h2>
 +
            <p>This program is brought to you by a group of dedicated volunteers who have come together to form <strong>CNMCyber</strong>. Our focus is on artificial intelligence, job-like practice, and getting you ready for your dream career. We're based in Virginia, and our goal is to inspire and empower the next generation of tech leaders — that means you!</p>
 +
        </section>
 +
        <section>
 +
            <h2>Get Started</h2>
 +
            <p><strong>Register on <a href="https://opplet.net/user/register" target="_blank">Opplet.net</a></strong></p>
 +
            <p><strong>Go to Spaces</strong> and locate this Welcome Space</p>
 +
            <p><strong>Click on the Wiki button</strong> located in this space (Welcome Space)</p>
 +
            <p><strong>Find the "Introduction to CNMCyber.com" page</strong> in the Wiki</p>
 +
            <p><strong>Explore the content</strong> to discover more about our platform and how it can benefit you</p>
 +
            <p><strong>Complete the task</strong> posted on the Tasks button found in this Space to finish the first stage of your journey</p>
 +
            <p>Once done, you'll be all set to move on to your first role as a <strong>Product Analyst for KenyaX</strong>!</p>
 +
            <div>
 +
                <button onclick="window.open('https://www.youtube.com/@ainurtz', '_blank')">Visit YouTube Channel</button>
 +
                <button onclick="window.open('https://opplet.net/user/register', '_blank')">Register Now</button>
 +
            </div>
 +
        </section>
 +
        <div class="footer-image">
 +
            <img src="http://social.cnmcyber.com/file/file/download?guid=41b546a8-abe4-42dd-ac8c-c98d2ebae8bd&hash_sha1=12be32b9" alt="Footer Image">
 +
        </div>
 +
    </main>
 +
</body>
 +
</html>
  
 
+
[[Category:CNMCyber.com Prototype Projects]]
[[Category: CNMCyber.com Prototypes]].
 

Latest revision as of 14:38, 20 June 2024

FMC-13

Hereinafter, the main page is called the Prototype page; its development is called the Project. The Project is included in CNM Website Projects and occurs under the Website for CNMCyber endeavor.


Requirements

Business

  • The Board needs to develop a prototype for CNMCyber.com Home that would be used to further develop requirements for cnmcyber.com Home that would be used by contractors to develop cnmcyber.com website.

Stakeholder's

Home page
  • As a coordinator developing requirements for CNMCyber.com home prototype, I want to see prototype home page design, layout and content structure that I would use to develop requirements for cnmcyber.com Home website pages.
  • As a coordinator developing requirements for CNMCyber.com home prototype, I want to see main sections such as the header, hero section, featured services, about us section, testimonials, and footer section.
Navigation and Menu
  • As a coordinator developing requirements for cnmcyber.com home, I want to be able to navigate to the various prototype wiki pages.
  • As a coordinator developing requirements for cnmcyber.com home, I want to be able to view main menu items and drop down menu items.
Content
  • As a coordinator developing requirements for cnmcyber.com home, I want to see prototype public text such as services, testimonials that I would use to develop requirements for cnmcyber.com home
  • As a coordinator developing requirements for cnmcyber.com home, I want to be able to see text formats and content layout
Call-to-Action
  • As a coordinator developing requirements for cnmcyber.com home, I want to be able to see call-to action buttons.
  • As a coordinator developing requirements for cnmcyber.com home, I want to be able to see call-to action buttons strategic positioning to encourage user engagement

Sprints

#1 (Mariam)

The first wireframe by Mariam, 2020
Mariam created the first wireframe in early 2020.

#2 (Gary)

In 2021, Gary updated the wireframe and moved it in the SVG format. Later, he hired designers to create a graphic representation.

#3 (Erastus, Kevin)

In 2023, Erastus and Kevin are working on developing requirements and a prototype wiki website for cnmcyber.com Home (prototype)

CNMCyber.com Code

<!DOCTYPE html> <html lang="en"> <head>

   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Welcome to CNMCyber</title>
   <style>
       /* Color scheme */
       :root {
           --primary-color: #2c3e50;
           --secondary-color: #e67e22;
           --accent-color: #d35400;
           --light-color: #ecf0f1;
           --dark-color: #34495e;
           --title-color: #001f3f; /* Dark blue color for the title */
           --button-color: #001f3f; /* Dark blue color for the buttons */
       }
       body {
           font-family: Arial, sans-serif;
           margin: 0;
           padding: 0;
           background-color: var(--light-color);
           color: var(--dark-color);
       }
       header {
           background-color: var(--primary-color);
           color: var(--light-color);
           padding: 40px;
           text-align: center;
       }
       main {
           max-width: 800px;
           margin: 0 auto;
           padding: 20px;
       }
       section {
           margin-bottom: 30px;
           text-align: center;
       }
       h1, h2 {
           color: var(--primary-color);
       }
       a {
           color: var(--accent-color);
           text-decoration: none;
       }
       a:hover {
           text-decoration: underline;
       }
       button {
           background-color: var(--button-color);
           color: var(--light-color);
           padding: 12px 24px;
           border: none;
           border-radius: 4px;
           cursor: pointer;
           transition: background-color 0.3s ease;
           font-size: 16px;
           margin-top: 10px;
       }
       button:hover {
           background-color: var(--accent-color);
       }
       .hero {
           position: relative;
           height: 400px; /* Adjust the height as needed */
           background-image: url('http://social.cnmcyber.com/file/file/download?guid=85df6190-8b47-406e-ad65-cc8bf07f209e&hash_sha1=5bc90720');
           background-size: cover;
           background-position: center;
           background-repeat: no-repeat;
           background-size: 120% auto;
       }
       .hero-content {
           position: absolute;
           bottom: 0;
           left: 50%;
           transform: translateX(-50%);
           background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
           padding: 20px;
           text-align: center;
       }
       .hero h1, .hero p {
           color: var(--light-color);
           margin: 0;
       }
       .about {
           text-align: center;
       }
       .about p {
           margin-bottom: 10px;
       }
       .footer-image {
           text-align: center;
           margin-top: 40px;
       }
       .footer-image img {
           max-width: 100%;
           height: auto;
       }
   </style>

</head> <body>

   <header>

Welcome to CNMCyber

Your Launchpad to Career Success!

   </header>
   <main>

Welcome to CNMCyber

Your Launchpad to Career Success!

       <section class="about">

About CNMCyber

Whether you're just exploring, starting out, seeking to enhance your credentials, or ready to mentor others, our career network ecosystem provides a supportive environment to help you grow, learn, and thrive in your professional journey.

At CNMCyber.com, you can join practice communities that align with your professional interests. If you are undecided, our pre-entry-level jobs are specially designed to help you discover your vocation. For answers to your questions without registration, visit <a href="https://www.kenyax.com/careers" target="_blank">kenyax.com/careers</a> or <a href="https://www.youtube.com/@ainurtz" target="_blank">youtube.com/@ainurtz</a>.

       </section>
       <section>

Who We Are

This program is brought to you by a group of dedicated volunteers who have come together to form CNMCyber. Our focus is on artificial intelligence, job-like practice, and getting you ready for your dream career. We're based in Virginia, and our goal is to inspire and empower the next generation of tech leaders — that means you!

       </section>
       <section>

Get Started

Register on <a href="https://opplet.net/user/register" target="_blank">Opplet.net</a>

Go to Spaces and locate this Welcome Space

Click on the Wiki button located in this space (Welcome Space)

Find the "Introduction to CNMCyber.com" page in the Wiki

Explore the content to discover more about our platform and how it can benefit you

Complete the task posted on the Tasks button found in this Space to finish the first stage of your journey

Once done, you'll be all set to move on to your first role as a Product Analyst for KenyaX!

               <button onclick="window.open('https://www.youtube.com/@ainurtz', '_blank')">Visit YouTube Channel</button>
               <button onclick="window.open('https://opplet.net/user/register', '_blank')">Register Now</button>
       </section>
   </main>

</body> </html>