Table of Contents
❯ REPLACE-ME
❯ REPLACE-ME
└── cyarm.tech/
├── README.md
├── api
│ ├── blogs.js
│ ├── project.js
│ ├── service.js
│ └── team.js
├── components
│ ├── BlogDetails
│ │ └── BlogDetails.js
│ ├── BlogList
│ │ └── index.js
│ ├── BlogSection
│ │ └── BlogSection.js
│ ├── BlogSidebar
│ │ └── index.js
│ ├── CoachingSection
│ │ └── CoachingSection.js
│ ├── ContactFrom
│ │ └── ContactForm.js
│ ├── ContactSection
│ │ └── index.js
│ ├── CountrySection
│ │ └── CountrySection.js
│ ├── CtaSection
│ │ └── CtaSection.js
│ ├── FaqSection
│ │ └── FaqSection.js
│ ├── FeaturesSection
│ │ └── FeaturesSection.js
│ ├── FunFact
│ │ └── FunFact.js
│ ├── Header2
│ │ └── Header2.js
│ ├── MobileMenu
│ │ └── MobileMenu.js
│ ├── ModalVideo
│ │ └── index.js
│ ├── PartnerSection
│ │ └── index.js
│ ├── PolicySection
│ │ └── PolicySection.js
│ ├── ProjectSection
│ │ └── ProjectSection.js
│ ├── ServiceSection
│ │ └── ServiceSection.js
│ ├── TeamSection
│ │ └── TeamSection.js
│ ├── Testimonial
│ │ └── Testimonial.js
│ ├── about
│ │ └── about.js
│ ├── business-consulting-components
│ │ ├── BusinessBlogSection
│ │ ├── BusinessContact
│ │ ├── BusinessFooter
│ │ ├── BusinessTestimonial
│ │ ├── ConsultingService
│ │ ├── EmpoweringSuccess
│ │ └── PartnerSection
│ ├── footer
│ │ └── Footer.js
│ ├── header
│ │ └── Header.js
│ ├── header3
│ │ └── Header3.js
│ ├── hero
│ │ └── hero.js
│ ├── hero2
│ │ └── hero2.js
│ ├── hero3
│ │ └── hero3.js
│ ├── pagetitle
│ │ └── PageTitle.js
│ ├── scrollbar
│ │ └── scrollbar.js
│ └── software-company-components
│ ├── BlogSection
│ ├── ContactFrom
│ ├── ContactSection
│ ├── FaqSection
│ ├── FeaturePartners
│ ├── Footer
│ ├── ProcessTechnology
│ ├── ServiceSection
│ ├── TechnologySection
│ ├── Testimonial
│ └── about
├── css
│ ├── animate.css
│ ├── custom-animation.css
│ ├── flaticon.css
│ ├── fontawesome.css
│ └── themify-icons.css
├── fonts
│ ├── Axiforma-Bold.ttf
│ ├── Axiforma-Medium.ttf
│ ├── Axiforma-Regular.ttf
│ ├── Axiforma-SemiBold.ttf
│ ├── fa-brands-400.ttf
│ ├── fa-light-300.ttf
│ ├── fa-regular-400.ttf
│ ├── fa-solid-900.ttf
│ ├── license.txt
│ ├── slick.eot
│ ├── slick.svg
│ ├── slick.ttf
│ ├── slick.woff
│ ├── themify.eot
│ ├── themify.svg
│ ├── themify.ttf
│ └── themify.woff
├── package-lock.json
├── package.json
├── pages
│ ├── 404
│ │ └── index.js
│ ├── _app.js
│ ├── _document.js
│ ├── about
│ │ ├── Policy.js
│ │ ├── WhyUs.js
│ │ └── index.js
│ ├── blog
│ │ └── index.js
│ ├── blog-single
│ │ └── [slug].js
│ ├── contact
│ │ └── index.js
│ ├── home
│ │ └── index.js
│ ├── home_business_consulting
│ │ └── index.js
│ ├── index.js
│ ├── index_old.js
│ ├── portfolio
│ │ └── index.js
│ ├── portfolio_details
│ │ └── [slug].js
│ ├── pricing
│ │ ├── Policy.js
│ │ └── index.js
│ ├── service
│ │ └── index.js
│ ├── service-single
│ │ └── [slug].js
│ ├── team
│ │ └── index.js
│ └── team-single
│ └── [slug].js
├── public
│ ├── favicon.ico
│ ├── images
│ │ ├── about
│ │ ├── avatar
│ │ ├── backgrounds
│ │ ├── blog
│ │ ├── case
│ │ ├── clients
│ │ ├── flag
│ │ ├── hero
│ │ ├── icons
│ │ ├── itflow_page_thumbnail.webp
│ │ ├── itflow_page_thumbnail_2.webp
│ │ ├── portfolio
│ │ ├── services
│ │ ├── shapes
│ │ ├── site_logo
│ │ └── team
│ └── vercel.svg
└── styles
├── BackgroundVideo.module.css
├── Home.module.css
├── animate.css
├── fontawesome.css
├── sass
│ ├── _fonts.scss
│ ├── _reset.scss
│ ├── _responsive.scss
│ ├── _variable.scss
│ ├── components
│ ├── elements
│ ├── style.scss
│ ├── template-parts
│ └── templates
└── themify-icons.css
CYARM.TECH/
__root__
package-lock.json ❯ REPLACE-ME
package.json ❯ REPLACE-ME
css
fontawesome.css ❯ REPLACE-ME
custom-animation.css ❯ REPLACE-ME
flaticon.css ❯ REPLACE-ME
themify-icons.css ❯ REPLACE-ME
animate.css ❯ REPLACE-ME
fonts
license.txt ❯ REPLACE-ME
slick.ttf ❯ REPLACE-ME
Axiforma-Bold.ttf ❯ REPLACE-ME
Axiforma-SemiBold.ttf ❯ REPLACE-ME
themify.ttf ❯ REPLACE-ME
Axiforma-Regular.ttf ❯ REPLACE-ME
fa-solid-900.ttf ❯ REPLACE-ME
fa-light-300.ttf ❯ REPLACE-ME
fa-brands-400.ttf ❯ REPLACE-ME
Axiforma-Medium.ttf ❯ REPLACE-ME
fa-regular-400.ttf ❯ REPLACE-ME
styles
BackgroundVideo.module.css ❯ REPLACE-ME
Home.module.css ❯ REPLACE-ME
fontawesome.css ❯ REPLACE-ME
themify-icons.css ❯ REPLACE-ME
animate.css ❯ REPLACE-ME
sass
_reset.scss ❯ REPLACE-ME
_fonts.scss ❯ REPLACE-ME
_variable.scss ❯ REPLACE-ME
_responsive.scss ❯ REPLACE-ME
style.scss ❯ REPLACE-ME
templates
_about.scss ❯ REPLACE-ME
_home.scss ❯ REPLACE-ME
_pricing.scss ❯ REPLACE-ME
_details.scss ❯ REPLACE-ME
_contact.scss ❯ REPLACE-ME
elements
_animation.scss ❯ REPLACE-ME
_space.scss ❯ REPLACE-ME
_rating.scss ❯ REPLACE-ME
_button.scss ❯ REPLACE-ME
_typography.scss ❯ REPLACE-ME
_form.scss ❯ REPLACE-ME
_funfact.scss ❯ REPLACE-ME
_iconblock.scss ❯ REPLACE-ME
_pagination.scss ❯ REPLACE-ME
_tab.scss ❯ REPLACE-ME
_accordion.scss ❯ REPLACE-ME
_iconbox.scss ❯ REPLACE-ME
_carousel.scss ❯ REPLACE-ME
_video.scss ❯ REPLACE-ME
_list.scss ❯ REPLACE-ME
_authorbox.scss ❯ REPLACE-ME
_backtotop.scss ❯ REPLACE-ME
_social.scss ❯ REPLACE-ME
template-parts
_sidebar.scss ❯ REPLACE-ME
_pagebanner.scss ❯ REPLACE-ME
_footer.scss ❯ REPLACE-ME
_header.scss ❯ REPLACE-ME
components
_team.scss ❯ REPLACE-ME
_blog.scss ❯ REPLACE-ME
_review.scss ❯ REPLACE-ME
_calltoaction.scss ❯ REPLACE-ME
_case.scss ❯ REPLACE-ME
_policy.scss ❯ REPLACE-ME
_hero.scss ❯ REPLACE-ME
_service.scss ❯ REPLACE-ME
_portfolio.scss ❯ REPLACE-ME
_clientlogo.scss ❯ REPLACE-ME
components
FunFact
FunFact.js ❯ REPLACE-ME
hero2
hero2.js ❯ REPLACE-ME
ServiceSection
ServiceSection.js ❯ REPLACE-ME
about
about.js ❯ REPLACE-ME
pagetitle
PageTitle.js ❯ REPLACE-ME
BlogSection
BlogSection.js ❯ REPLACE-ME
CoachingSection
CoachingSection.js ❯ REPLACE-ME
scrollbar
scrollbar.js ❯ REPLACE-ME
BlogList
index.js ❯ REPLACE-ME
business-consulting-components
ConsultingService
ConsultingService.js ❯ REPLACE-ME
BusinessTestimonial
BusinessTestimonial.js ❯ REPLACE-ME
EmpoweringSuccess
EmpoweringSuccess.js ❯ REPLACE-ME
BusinessContact
BusinessContact.js ❯ REPLACE-ME
BusinessBlogSection
BusinessBlogSection.js ❯ REPLACE-ME
PartnerSection
PartnerSection.js ❯ REPLACE-ME
BusinessFooter
BusinessFooter.js ❯ REPLACE-ME
ModalVideo
index.js ❯ REPLACE-ME
MobileMenu
MobileMenu.js ❯ REPLACE-ME
ContactFrom
ContactForm.js ❯ REPLACE-ME
header
Header.js ❯ REPLACE-ME
TeamSection
TeamSection.js ❯ REPLACE-ME
CtaSection
CtaSection.js ❯ REPLACE-ME
FeaturesSection
FeaturesSection.js ❯ REPLACE-ME
software-company-components
ProcessTechnology
ProcessTechnology.js ❯ REPLACE-ME
FeaturePartners
index.js ❯ REPLACE-ME
ServiceSection
ServiceSection.js ❯ REPLACE-ME
about
about.js ❯ REPLACE-ME
BlogSection
BlogSection.js ❯ REPLACE-ME
ContactFrom
ContactForm.js ❯ REPLACE-ME
TechnologySection
TechnologySection.js ❯ REPLACE-ME
ContactSection
index.js ❯ REPLACE-ME
FaqSection
FaqSection.js ❯ REPLACE-ME
Footer
Footer.js ❯ REPLACE-ME
Testimonial
Testimonial.js ❯ REPLACE-ME
Header2
Header2.js ❯ REPLACE-ME
CountrySection
CountrySection.js ❯ REPLACE-ME
PartnerSection
index.js ❯ REPLACE-ME
ContactSection
index.js ❯ REPLACE-ME
header3
Header3.js ❯ REPLACE-ME
FaqSection
FaqSection.js ❯ REPLACE-ME
hero3
hero3.js ❯ REPLACE-ME
ProjectSection
ProjectSection.js ❯ REPLACE-ME
hero
hero.js ❯ REPLACE-ME
Testimonial
Testimonial.js ❯ REPLACE-ME
BlogDetails
BlogDetails.js ❯ REPLACE-ME
BlogSidebar
index.js ❯ REPLACE-ME
footer
Footer.js ❯ REPLACE-ME
PolicySection
PolicySection.js ❯ REPLACE-ME
pages
_document.js ❯ REPLACE-ME
index_old.js ❯ REPLACE-ME
_app.js ❯ REPLACE-ME
index.js ❯ REPLACE-ME
blog-single
[slug].js ❯ REPLACE-ME
portfolio
index.js ❯ REPLACE-ME
service-single
[slug].js ❯ REPLACE-ME
404
index.js ❯ REPLACE-ME
team
index.js ❯ REPLACE-ME
portfolio_details
[slug].js ❯ REPLACE-ME
contact
index.js ❯ REPLACE-ME
home_business_consulting
index.js ❯ REPLACE-ME
team-single
[slug].js ❯ REPLACE-ME
blog
index.js ❯ REPLACE-ME
service
index.js ❯ REPLACE-ME
home
index.js ❯ REPLACE-ME
api
project.js ❯ REPLACE-ME
blogs.js ❯ REPLACE-ME
team.js ❯ REPLACE-ME
service.js ❯ REPLACE-ME
Before getting started with cyarm.tech, ensure your runtime environment meets the following requirements:
- Programming Language: JavaScript
- Package Manager: Npm
Install cyarm.tech using one of the following methods:
Build from source:
- Clone the cyarm.tech repository:
❯ git clone https://github.com/JehadurRE/cyarm.tech
- Navigate to the project directory:
❯ cd cyarm.tech
- Install the project dependencies:
❯ npm install
Run cyarm.tech using the following command:
Using npm
❯ npm start
Run the test suite using the following command:
Using npm
❯ npm test
-
Task 1
:Implement feature one. -
Task 2
: Implement feature two. -
Task 3
: Implement feature three.
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
cyarm.tech
project. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/JehadurRE/cyarm.tech
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.
- List any resources, contributors, inspiration, etc. here.