diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml
new file mode 100644
index 0000000000..39b7465b02
--- /dev/null
+++ b/.github/workflows/jekyll.yml
@@ -0,0 +1,65 @@
+# This workflow uses actions that are not certified by GitHub.
+# They are provided by a third-party and are governed by
+# separate terms of service, privacy policy, and support
+# documentation.
+
+# Sample workflow for building and deploying a Jekyll site to GitHub Pages
+name: Deploy Jekyll site to Pages
+
+on:
+ # Runs on pushes targeting the default branch
+ push:
+ branches: ["master"]
+
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
+# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
+concurrency:
+ group: "pages"
+ cancel-in-progress: false
+
+jobs:
+ # Build job
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Setup Ruby
+ uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
+ with:
+ ruby-version: '3.1' # Not needed with a .ruby-version file
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
+ cache-version: 0 # Increment this number if you need to re-download cached gems
+ - name: Setup Pages
+ id: pages
+ uses: actions/configure-pages@v4
+ - name: Build with Jekyll
+ # Outputs to the './_site' directory by default
+ run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
+ env:
+ JEKYLL_ENV: production
+ - name: Upload artifact
+ # Automatically uploads an artifact from the './_site' directory by default
+ uses: actions/upload-pages-artifact@v3
+
+
+ # Deployment job
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v4
diff --git a/Gemfile b/Gemfile
index e4321a1a36..b6429f58d6 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,4 +2,5 @@ source "https://rubygems.org"
gem "webrick", "~> 1.7"
gem "jekyll", "~> 4.3"
-gem "jekyll-environment-variables"
\ No newline at end of file
+gem "jekyll-environment-variables"
+gem "jekyll-sitemap"
diff --git a/README.md b/README.md
index e643c86690..206e472c0d 100755
--- a/README.md
+++ b/README.md
@@ -1,103 +1,4 @@
-# Jekyll Serif Theme
+# Source Code of Reachus Technologies Website
-Serif is a modern business theme for Jekyll. It contains multiple content types for a typical brochure/marketing website. The theme is fully responsive, blazing fast and artfully illustrated.
-
-[Live Demo](https://jekyll-serif.netlify.app/) |
-[Zerostatic Themes](https://www.zerostatic.io)
-
-
-
-
-
-### Theme features
-
-- Jekyll 4.2+
-- Netlify & Github Pages ready
-- Services (Collection)
-- Team (Collection)
-- Features (Data)
-- SCSS
-- 100% Responsive design, animated hamburger and mobile slide in menu
-- Bootstrap 4.6 - _Only the bootstrap grid and utilites are imported by default. If you want to use more of the Boostrap library you can uncomment the `@import` in `style.scss`_
-- 100/100 Google Lighthouse speed score
-- 100/100 Google Lighthouse seo score
-- 100/100 Google Lighthouse accessibility score
-- 100/100 Google Lighthouse best practices score
-- Under 50KB without images or 80KB with images and illustrations ⚡
-- Under 20KB without Google fonts ⚡⚡⚡
-- Robust example content included
-- Royalty free illustrations included
-
-## Installation
-
-### Installing Ruby & Jekyll
-
-If this is your first time using Jekyll, please follow the [Jekyll docs](https://jekyllrb.com/docs/installation/) and make sure your local environment (including Ruby) is setup correctly.
-
-### Installing Theme
-
-Download or clone the theme.
-
-To run the theme locally, navigate to the theme directory and run:
-
-```
-bundle install
-```
-
-To start the Jekyll local development server.
-
-```
-bundle exec jekyll serve
-```
-
-To build the theme.
-
-```
-bundle exec jekyll build
-```
-
-## Deployment
-
-### Netlify
-
-Use Netlify to deploy this theme. This theme contains a valid and tested `netlify.toml` - Feel free to use the 1-click deploy below.
-
-[](https://app.netlify.com/start/deploy?repository=https://github.com/zerostaticthemes/jekyll-serif-theme)
-
-### Github Pages
-
-This theme has been tested to work with Github Pages (and Github Project Pages). When using Github Pages you will need to update the `baseurl` in the `_config.yml` otherwise all the css, images and paths will be broken.
-
-For example the site https://zerostaticthemes.github.io/jekyll-serif-theme would have `baseurl: "/jekyll-serif-theme/"`
-
-## Extras
-
-### License
-
-- You cannot create ports of this theme
-- You cannot re-sell this theme
-
-### Credits
-
-- Beautiful royalty free Illustrations by Icons8 - https://icons8.com/illustrations/style--pixeltrue
-- Stock images by Unsplash - https://unsplash.com/
-- Feature icons by Noun Project - https://thenounproject.com/
-
-## Support My Work
-
-I've been building open source themes for all the main static site generators for over 4 years now. My premium themes allow me to continue to allocate time to maintain, improve and build new open source themes.
-
-1. Leave a star ⭐🙏🏻
-2. Make a contribution to this theme, add a feature, fix a bug, nothing is to small
-2. Mention this theme on twitter [@zerostaticio](https://twitter.com/zerostaticio) 📢
-3. Purchase a premium theme 🔥
-
-### All Jekyll Themes by Zerostatic
-
-- [Jekyll Serif (Open Source)](https://www.zerostatic.io/theme/jekyll-serif/)
-- [Jekyll Atlantic (Open Source)](https://www.zerostatic.io/theme/jekyll-atlantic/)
-- [Jekyll Advance (Premium)](https://www.zerostatic.io/theme/jekyll-advance/)
-- [Jekyll Origin (Premium)](https://www.zerostatic.io/theme/jekyll-origin/)
-- [Jekyll Curate (Premium)](https://www.zerostatic.io/theme/jekyll-curate/)
-
-🇦🇺 **Made in Australia** by Robert Austin
+Created from theme by www.zerostatic.io
+Content copyright with Reachus Tech.
diff --git a/_config.yml b/_config.yml
index 88706079c0..6b077246b0 100755
--- a/_config.yml
+++ b/_config.yml
@@ -1,6 +1,6 @@
baseurl: '/'
permalink: pretty
-title: 'Jekyll Serif'
+title: 'Reachus Technologies Private Limited'
logo:
mobile: "images/logo/logo-mobile.svg"
@@ -49,3 +49,7 @@ exclude:
- LICENSE.md
- LICENSE
- README.md
+ - _team/
+ - team.md
+ - about.md
+ - disabled/
diff --git a/_data/contact.yml b/_data/contact.yml
index 6740b1e5dc..eb528ee52d 100644
--- a/_data/contact.yml
+++ b/_data/contact.yml
@@ -1,3 +1,3 @@
-email: 'jekyllserif@example.com'
-phone: '1800 123 000'
+email: 'reachus@reachus.tech'
+phone: '+91-7091375436'
contact_button_link: 'contact'
diff --git a/_data/features.json b/_data/features.json
index 96b347d592..df3e5abd9a 100644
--- a/_data/features.json
+++ b/_data/features.json
@@ -1,7 +1,7 @@
[
{
- "title": "Free Consultation",
- "description": "New clients receive an obligation free consultation.",
+ "title": "Core IT Company",
+ "description": "We boast profound expertise of IT systems backed with strong fundamental knowledge and long term experience",
"image": {
"url": "images/features/noun_branding_1885335.svg",
"width": 80,
@@ -9,8 +9,8 @@
}
},
{
- "title": "Certified Accountants",
- "description": "All members of our team are certified accountants.",
+ "title": "Consistent Track Record",
+ "description": "We have delivered to our clients with impressive workmanship setting the bar high with each projects",
"image": {
"url": "images/features/noun_The Process_1885341.svg",
"width": 80,
@@ -18,8 +18,8 @@
}
},
{
- "title": "Tax Compliance",
- "description": "We stay up to date on the latest changes to the tax code.",
+ "title": "Outstanding Associations",
+ "description": "We are proud to have worked for the clients with remarkable significance",
"image": {
"url": "images/features/noun_3d modeling_1885342.svg",
"width": 80,
diff --git a/_data/menus.yml b/_data/menus.yml
index 89a21c74e9..52b7943aa2 100644
--- a/_data/menus.yml
+++ b/_data/menus.yml
@@ -1,21 +1,24 @@
main:
+ - name: "Home"
+ url: "/"
+ weight: 1
- name: "Services"
url: "/services/"
weight: 2
- - name: "Team"
- url: "/team/"
- weight: 3
- - name: "About"
- url: "/about/"
- weight: 4
+ # - name: "About"
+ # url: "/about/"
+ # weight: 3
- name: "Contact"
url: "/contact/"
- weight: 5
+ weight: 3
+ # - name: "Team"
+ # url: "/team/"
+ # weight: 5
-footer:
- - name: "Home"
- url: "/"
- weight: 1
- - name: "Contact"
- url: "/contact/"
- weight: 2
+ #footer:
+ # - name: "Home"
+ # url: "/"
+ # weight: 1
+ # - name: "Contact"
+ # url: "/contact/"
+ # weight: 2
diff --git a/_data/seo.yml b/_data/seo.yml
index 64d106b3b5..251e18aaaa 100644
--- a/_data/seo.yml
+++ b/_data/seo.yml
@@ -1,4 +1,4 @@
google_analytics_id: ""
-meta_twitter_site: "@zerostaticio"
-meta_twitter_creator: "@zerostaticio"
-copyright_text: 'Free Jekyll theme by www.zerostatic.io'
+ #meta_twitter_site: "@zerostaticio"
+ #meta_twitter_creator: "@zerostaticio"
+copyright_text: '2024 Reachus Technologies Private Limited. All Rights Reserved'
diff --git a/_data/social.json b/_data/social.json
index c5c42295a0..9821e56e07 100644
--- a/_data/social.json
+++ b/_data/social.json
@@ -1,33 +1,13 @@
[
{
"name": "Github",
- "link": "https://github.com/zerostaticthemes/jekyll-serif-theme",
+ "link": "https://github.com/ReachUsTech",
"image": "images/social/github.svg"
},
- {
- "name": "Twitter",
- "link": "https://twitter.com/zerostaticio",
- "image": "images/social/twitter.svg"
- },
- {
- "name": "Facebook",
- "link": "https://facebook.com",
- "image": "images/social/facebook.svg"
- },
{
"name": "Email",
- "link": "mailto:ekyllserif@example.com ",
+ "link": "mailto:reachus@reachus.tech ",
"image": "images/social/email.svg"
- },
- {
- "name": "Instagram",
- "link": "https://instagram.com",
- "image": "images/social/instagram.svg"
- },
- {
- "name": "Discord",
- "link": "https://discord.com",
- "image": "images/social/discord.svg"
}
]
diff --git a/_includes/footer.html b/_includes/footer.html
index dfb091c3b8..4c1fa54f7c 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -3,8 +3,9 @@
Thanks for reaching out to us. We appreciate your message and will get back to you as soon as possible.
diff --git a/about.md b/disabled/about.md similarity index 100% rename from about.md rename to disabled/about.md diff --git a/_services/accounting.md b/disabled/accounting.md similarity index 97% rename from _services/accounting.md rename to disabled/accounting.md index 80d4064b95..213c7af675 100644 --- a/_services/accounting.md +++ b/disabled/accounting.md @@ -1,12 +1,12 @@ --- title: "Accounting" -date: 2018-11-18T12:33:46+10:00 +date: 2024-02-22 weight: 1 --- Financial accounting (or financial accountancy) is the field of accounting concerned with the **summary, analysis and reporting** of financial transactions related to a business. - + # Objectives diff --git a/builtatlightspeed.json b/disabled/builtatlightspeed.json similarity index 100% rename from builtatlightspeed.json rename to disabled/builtatlightspeed.json diff --git a/_services/business-advisory.md b/disabled/business-advisory.md similarity index 100% rename from _services/business-advisory.md rename to disabled/business-advisory.md diff --git a/_services/business-sales.md b/disabled/business-sales.md similarity index 100% rename from _services/business-sales.md rename to disabled/business-sales.md diff --git a/_services/insurance.md b/disabled/insurance.md similarity index 100% rename from _services/insurance.md rename to disabled/insurance.md diff --git a/_services/mergers.md b/disabled/mergers.md similarity index 100% rename from _services/mergers.md rename to disabled/mergers.md diff --git a/disabled/push.sh b/disabled/push.sh new file mode 100644 index 0000000000..aa26b1df24 --- /dev/null +++ b/disabled/push.sh @@ -0,0 +1,3 @@ +git add ./ +git commit -m "asa" +git push diff --git a/_services/superannuation.md b/disabled/superannuation.md similarity index 100% rename from _services/superannuation.md rename to disabled/superannuation.md diff --git a/_services/tax-preperation.md b/disabled/tax-preperation.md similarity index 100% rename from _services/tax-preperation.md rename to disabled/tax-preperation.md diff --git a/team.md b/disabled/team.md similarity index 57% rename from team.md rename to disabled/team.md index 99e21bc99d..f82894d2c8 100644 --- a/team.md +++ b/disabled/team.md @@ -9,4 +9,3 @@ intro_image_hide_on_mobile: false # Meet The Team -Our team of qualified accountants and financial consultants can help your business at any stage of it's growth. diff --git a/_services/wealth-management.md b/disabled/wealth-management.md similarity index 100% rename from _services/wealth-management.md rename to disabled/wealth-management.md diff --git a/images/favicon-32x32.png b/images/favicon-32x32.png new file mode 100644 index 0000000000..f717c368cb Binary files /dev/null and b/images/favicon-32x32.png differ diff --git a/images/favicon-32x32.svg b/images/favicon-32x32.svg deleted file mode 100644 index 24abc68a7f..0000000000 --- a/images/favicon-32x32.svg +++ /dev/null @@ -1,10 +0,0 @@ - - diff --git a/images/img1-t.svg b/images/img1-t.svg new file mode 100644 index 0000000000..0df0c7f75f --- /dev/null +++ b/images/img1-t.svg @@ -0,0 +1,734 @@ + + diff --git a/images/img1.svg b/images/img1.svg new file mode 100644 index 0000000000..4d95a019db --- /dev/null +++ b/images/img1.svg @@ -0,0 +1,226 @@ + + diff --git a/images/img2.svg b/images/img2.svg new file mode 100644 index 0000000000..22dae8c8a7 --- /dev/null +++ b/images/img2.svg @@ -0,0 +1,691 @@ + + diff --git a/images/logo-short.png b/images/logo-short.png new file mode 100644 index 0000000000..2984612136 Binary files /dev/null and b/images/logo-short.png differ diff --git a/images/logo/logo-mobile.svg b/images/logo/logo-mobile.svg index 7d66bbf7c0..bd880910fb 100644 --- a/images/logo/logo-mobile.svg +++ b/images/logo/logo-mobile.svg @@ -1,11 +1,37 @@ - \ No newline at end of file + diff --git a/images/logo/logo.svg b/images/logo/logo.svg index e52fab1e66..9dabc7df83 100644 --- a/images/logo/logo.svg +++ b/images/logo/logo.svg @@ -1,10 +1,721 @@ - \ No newline at end of file + diff --git a/index.md b/index.md index 7bb6f63f25..a1541a9260 100755 --- a/index.md +++ b/index.md @@ -1,13 +1,13 @@ --- -title: Jekyll Serif Theme +title: Reachus Tech. layout: home -description: Jekyll Serif contains content types for a typical business website. The theme is fully responsive, blazing fast and artfully illustrated. -intro_image: "images/illustrations/pointing.svg" +description: Landing page for site of Reachus Technologies. +intro_image: "images/img1.svg" intro_image_absolute: true intro_image_hide_on_mobile: true show_call_box: true --- -# Serif - A Jekyll Business Theme. +