Initial commit with simple custom css to add branding
16
.gitignore
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# ---> Hugo
|
||||||
|
# Generated files by hugo
|
||||||
|
/public/
|
||||||
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
|
# Executable may be added to repository
|
||||||
|
hugo.exe
|
||||||
|
hugo.darwin
|
||||||
|
hugo.linux
|
||||||
|
|
||||||
|
# Temporary lock file while building
|
||||||
|
/.hugo_build.lock
|
||||||
|
|
||||||
|
*.swp
|
||||||
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "themes/roxo-hugo"]
|
||||||
|
path = themes/roxo-hugo
|
||||||
|
url = https://git.nextia.cloud/Nextia/roxo-hugo.git
|
||||||
30
assets/scss/custom.scss
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
.navbar{
|
||||||
|
background: #0d4f76;
|
||||||
|
}
|
||||||
|
.site-navigation .nav-item .nav-link {
|
||||||
|
color: #6bfdb1
|
||||||
|
}
|
||||||
|
.btn-primary{
|
||||||
|
background:#01bace
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover{
|
||||||
|
background:#017380
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
color: #6bfdb1 !important
|
||||||
|
}
|
||||||
|
|
||||||
|
$bg-blur: rgba(#000, 0.4);
|
||||||
|
.site-hero-content {
|
||||||
|
background-color: $bg-blur;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-hero-content h1 {
|
||||||
|
color: #6bfdb1 !important;
|
||||||
|
}
|
||||||
|
.site-hero-content h6 {
|
||||||
|
color: #6bfdb1 !important;
|
||||||
|
}
|
||||||
147
config.toml
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
baseURL = "http://example.org/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "Nextia | Maker movement in Mexico"
|
||||||
|
theme = "roxo-hugo"
|
||||||
|
summarylength = 25
|
||||||
|
|
||||||
|
# Site Menus
|
||||||
|
[menu]
|
||||||
|
# Navbar Menus
|
||||||
|
[[menu.nav]]
|
||||||
|
name = "Home"
|
||||||
|
url = ""
|
||||||
|
weight = 1
|
||||||
|
[[menu.nav]]
|
||||||
|
name = "About"
|
||||||
|
url = "about"
|
||||||
|
weight = 2
|
||||||
|
[[menu.nav]]
|
||||||
|
name = "Portfolio"
|
||||||
|
url = "portfolio"
|
||||||
|
weight = 3
|
||||||
|
[[menu.nav]]
|
||||||
|
name = "Blog"
|
||||||
|
url = "blog"
|
||||||
|
weight = 4
|
||||||
|
[[menu.nav]]
|
||||||
|
name = "Get in touch"
|
||||||
|
url = "contact"
|
||||||
|
weight = 5
|
||||||
|
|
||||||
|
# Site Params
|
||||||
|
[params]
|
||||||
|
logo = "images/logo.png"
|
||||||
|
logo_footer = "images/logo-footer.png"
|
||||||
|
favicon_icon = "images/favicon.ico"
|
||||||
|
favicon_shortcut_icon = "images/favicon.png"
|
||||||
|
custom_stylesheets = ["scss/custom.scss" ] # [ "scss/my_1.scss", "scss/my_2.scss" ]
|
||||||
|
dateFormat = "26 FEB 1994"
|
||||||
|
# Meta data
|
||||||
|
description = "Roxo Hugo themes | Design Agency Template by StaticMania"
|
||||||
|
author = "StaticMania"
|
||||||
|
# Google Analitycs
|
||||||
|
#googleAnalitycsID = "Your ID"
|
||||||
|
# We're using formspree.io for form handling, paste your formspree url below
|
||||||
|
fabform = "https://fabform.io/f/k0NtSB4"
|
||||||
|
|
||||||
|
# Contact Form
|
||||||
|
[params.contactForm]
|
||||||
|
placeholder_first_name = "First Name"
|
||||||
|
placeholder_last_name = "Last Name"
|
||||||
|
placeholder_email = "Email"
|
||||||
|
placeholder_project_type = "Project Type"
|
||||||
|
placeholder_about_the_project = "About the Project"
|
||||||
|
send_message = "Send Message"
|
||||||
|
|
||||||
|
[[params.contactForm.projectType]]
|
||||||
|
value = "gd"
|
||||||
|
title = "Graphics Design"
|
||||||
|
[[params.contactForm.projectType]]
|
||||||
|
value = "wd"
|
||||||
|
title = "Web Design"
|
||||||
|
|
||||||
|
# Navbar Action Button
|
||||||
|
[params.navAction]
|
||||||
|
status = true
|
||||||
|
name = "Get in touch"
|
||||||
|
url = "contact"
|
||||||
|
|
||||||
|
|
||||||
|
# Banner Section
|
||||||
|
[params.banner]
|
||||||
|
enable = true
|
||||||
|
background_image = "images/backgrounds/landing-background.jpg"
|
||||||
|
heading = "Maker community intended to open horizons"
|
||||||
|
tagline = "Making a tech future"
|
||||||
|
primary_button = "See Our Blog"
|
||||||
|
primary_button_url = "blog"
|
||||||
|
secondary_button = "Connect with Us"
|
||||||
|
secondary_button_url = "contact"
|
||||||
|
|
||||||
|
[params.blog]
|
||||||
|
enable = true
|
||||||
|
title = "RECENT BLOG ENTRIES"
|
||||||
|
subtitle = "Tutorials, development anecdotes and think pieces."
|
||||||
|
read_more = "READ MORE"
|
||||||
|
|
||||||
|
[params.portfolio]
|
||||||
|
enable = false
|
||||||
|
title = "OUR RECENT WORKS"
|
||||||
|
subtitle = "Crafting experiences and seeking to make the complex clear & beautiful."
|
||||||
|
view_project = "view project"
|
||||||
|
more_works = "MORE WORKS"
|
||||||
|
scroll_down = "scroll down"
|
||||||
|
|
||||||
|
[params.call_to_action]
|
||||||
|
enable = true
|
||||||
|
background_image = "images/backgrounds/cta-background.jpg"
|
||||||
|
title = "LET’S WORK TOGETHER"
|
||||||
|
primary_button = "Submit Query"
|
||||||
|
primary_button_url = "contact"
|
||||||
|
secondary_button = "Not Convinced"
|
||||||
|
secondary_button_url = "portfolio"
|
||||||
|
|
||||||
|
[params.footer]
|
||||||
|
params.footer.qr_print = true
|
||||||
|
# Footer Contact Info
|
||||||
|
[params.footer.contactInfo]
|
||||||
|
title = "Contact Info"
|
||||||
|
address = "713 Elmwood St.<br>Prior Lake, MN 55372"
|
||||||
|
phone = "409-896-1444"
|
||||||
|
email = "info@roxo.co"
|
||||||
|
# Footer Sitemap
|
||||||
|
[params.footer.sitemap]
|
||||||
|
title = "Sitemap"
|
||||||
|
[[params.footer.sitemap.link]]
|
||||||
|
name = "About Company"
|
||||||
|
url = "about"
|
||||||
|
[[params.footer.sitemap.link]]
|
||||||
|
name = "Projects"
|
||||||
|
url = "portfolio"
|
||||||
|
[[params.footer.sitemap.link]]
|
||||||
|
name = "Blog"
|
||||||
|
url = "blog"
|
||||||
|
[[params.footer.sitemap.link]]
|
||||||
|
name = "Contact"
|
||||||
|
url = "contact"
|
||||||
|
# Footer Social Media
|
||||||
|
[params.footer.social]
|
||||||
|
title = "Social Media"
|
||||||
|
[[params.footer.social.link]]
|
||||||
|
name = "Medium"
|
||||||
|
url = "#"
|
||||||
|
[[params.footer.social.link]]
|
||||||
|
name = "Behance"
|
||||||
|
url = "#"
|
||||||
|
[[params.footer.social.link]]
|
||||||
|
name = "Dribbble"
|
||||||
|
url = "#"
|
||||||
|
[[params.footer.social.link]]
|
||||||
|
name = "Instagram"
|
||||||
|
url = "#"
|
||||||
|
# Footer Service
|
||||||
|
[params.footer.service]
|
||||||
|
title = "We help brands:"
|
||||||
|
description = "develop design solutions<br>produce valuable cultural content<br>create fresh brand experience"
|
||||||
|
[params.footer.back_to_top]
|
||||||
|
description = "I want to <br> visit again"
|
||||||
8
content/about/_index.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "About Us"
|
||||||
|
date: 2018-07-12T18:19:33+06:00
|
||||||
|
heading : "WE ARE ROXO DESIGN. AN AWARD-WINNING CREATIVE STUDIO IN FLORIDA."
|
||||||
|
description : "We are specialized in developing forward-thinking brand identities, websites, illustration and animation for all types of customers. And we do this by bringing our customers through each phase of the design process with us."
|
||||||
|
expertise_title: "Expertise"
|
||||||
|
expertise_sectors: ["Customer Experience Design", "Digital Products", "Development", "Campaign & Content", "Employer Branding", "Animation & Motion Graphics", "Packaging & Product Design", "Retail & Spacial", "Print & Editorial Design", "Concept/Text", "Information Design"]
|
||||||
|
---
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
title: "Design Inspiration: The Best Projects From December"
|
||||||
|
date: 2019-12-24T13:45:06+06:00
|
||||||
|
image: images/blog/blog-post-04.jpg
|
||||||
|
feature_image: images/blog/blog-details-image.jpg
|
||||||
|
author: Alexender Schoitiz
|
||||||
|
---
|
||||||
|
### Black Lines brand identity, by & Smith
|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|
The company was previously known as Hingston + Co. but has been given a complete rebrand — including a new logo, tap badges, website and branded material — by London-based design studio & Smith. The new identity is based on the Kandinsky abstract painting, Black Lines, and true to its name, is mostly black and white with a few flashes of colour. According to & Smith, the identity brings together “art and science” and has been brought to life through collaborations with nine illustrators.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
> "The public is more familiar with bad design than good design. It is, in effect, conditioned to prefer bad design, because that is what it lives with. The new becomes threatening, the old reassuring."
|
||||||
|
|
||||||
|
|
||||||
|
> Paul Rand, graphic designer
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
title: "Design Inspiration: The Best Projects From November"
|
||||||
|
date: 2019-12-24T13:36:06+06:00
|
||||||
|
image: images/blog/blog-post-02.jpg
|
||||||
|
feature_image: images/blog/blog-details-image.jpg
|
||||||
|
author: Alexender Schoitiz
|
||||||
|
---
|
||||||
|
### Black Lines brand identity, by & Smith
|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|
The company was previously known as Hingston + Co. but has been given a complete rebrand — including a new logo, tap badges, website and branded material — by London-based design studio & Smith. The new identity is based on the Kandinsky abstract painting, Black Lines, and true to its name, is mostly black and white with a few flashes of colour. According to & Smith, the identity brings together “art and science” and has been brought to life through collaborations with nine illustrators.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
> "The public is more familiar with bad design than good design. It is, in effect, conditioned to prefer bad design, because that is what it lives with. The new becomes threatening, the old reassuring."
|
||||||
|
|
||||||
|
|
||||||
|
> Paul Rand, graphic designer
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
title: "Pt Chooses Classic Blue for Its Colour of the Year 2020"
|
||||||
|
date: 2019-12-24T13:32:54+06:00
|
||||||
|
image: images/blog/blog-post-03.jpg
|
||||||
|
feature_image: images/blog/blog-details-image.jpg
|
||||||
|
author: Alexender Schoitiz
|
||||||
|
---
|
||||||
|
### Black Lines brand identity, by & Smith
|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|
The company was previously known as Hingston + Co. but has been given a complete rebrand — including a new logo, tap badges, website and branded material — by London-based design studio & Smith. The new identity is based on the Kandinsky abstract painting, Black Lines, and true to its name, is mostly black and white with a few flashes of colour. According to & Smith, the identity brings together “art and science” and has been brought to life through collaborations with nine illustrators.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
> "The public is more familiar with bad design than good design. It is, in effect, conditioned to prefer bad design, because that is what it lives with. The new becomes threatening, the old reassuring."
|
||||||
|
|
||||||
|
|
||||||
|
> Paul Rand, graphic designer
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
title: "The 10 Biggest Rebrands and Logo Designs of 2019"
|
||||||
|
date: 2019-12-24T13:40:00+06:00
|
||||||
|
image: images/blog/blog-post-01.jpg
|
||||||
|
feature_image: images/blog/blog-details-image.jpg
|
||||||
|
author: Alexender Schoitiz
|
||||||
|
---
|
||||||
|
### Black Lines brand identity, by & Smith
|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|
The company was previously known as Hingston + Co. but has been given a complete rebrand — including a new logo, tap badges, website and branded material — by London-based design studio & Smith. The new identity is based on the Kandinsky abstract painting, Black Lines, and true to its name, is mostly black and white with a few flashes of colour. According to & Smith, the identity brings together “art and science” and has been brought to life through collaborations with nine illustrators.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
> "The public is more familiar with bad design than good design. It is, in effect, conditioned to prefer bad design, because that is what it lives with. The new becomes threatening, the old reassuring."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
> Paul Rand, graphic designer
|
||||||
|
|
||||||
6
content/blog/_index.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title : "Roxo Blog"
|
||||||
|
date : 2019-12-23T20:17:01+06:00
|
||||||
|
description : "By fusing strategy & design we help our partners build their brands, drive business, & stand out from the noise in saturated markets! Follow our blog for the latest case studies and projects."
|
||||||
|
---
|
||||||
|
|
||||||
36
content/blog/the-10-biggest-product-stories-of-2019.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
title: "The 10 Biggest Product Stories of 2019"
|
||||||
|
date: 2019-12-24T12:58:17+06:00
|
||||||
|
image: images/blog/blog-post-04.jpg
|
||||||
|
feature_image: images/blog/blog-details-image.jpg
|
||||||
|
author: Alexender Schoitiz
|
||||||
|
---
|
||||||
|
### Black Lines brand identity, by & Smith
|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|
The company was previously known as Hingston + Co. but has been given a complete rebrand — including a new logo, tap badges, website and branded material — by London-based design studio & Smith. The new identity is based on the Kandinsky abstract painting, Black Lines, and true to its name, is mostly black and white with a few flashes of colour. According to & Smith, the identity brings together “art and science” and has been brought to life through collaborations with nine illustrators.
|
||||||
|
|
||||||
|
1. ROFL means Rolling on floor laughing.
|
||||||
|
2. STFU means Shut the *freak* up.
|
||||||
|
3. LMK means Let me know.
|
||||||
|
4. ILY means I love you.
|
||||||
|
5. YOLO means You only live once.
|
||||||
|
6. SMH means Shaking my head.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Black Lines wants it to be as easy to serve a Negroni as it is a pint of lager. The drinks company is seeking to revolutionise the bar experience by serving cocktails by draught with a changing menu of drinks (as well as same favourite stand-bys). A pink grapefruit spritz was served through the summer while a new pear and white tea fizz joins the line-up for winter.
|
||||||
|
|
||||||
|
> "The public is more familiar with bad design than good design. It is, in effect, conditioned to prefer bad design, because that is what it lives with. The new becomes threatening, the old reassuring."
|
||||||
|
|
||||||
|
|
||||||
|
> Paul Rand, graphic designer
|
||||||
|
|
||||||
7
content/contact/_index.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title : "Contact"
|
||||||
|
date : 2019-12-23T20:17:01+06:00
|
||||||
|
heading : "Don’t be shy. Say <span>Hello.</span>"
|
||||||
|
form_heading : "TELL US ABOUT YOUR PROJECT"
|
||||||
|
---
|
||||||
|
|
||||||
4
content/portfolio/_index.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
title: "We build better <span>products</span> to help our clients build better <span>companies</span>"
|
||||||
|
date: 2019-12-23T16:48:28+06:00
|
||||||
|
---
|
||||||
29
content/portfolio/kio-tape-2.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
title: "KIO-TAPE BRAND"
|
||||||
|
date: 2019-12-23T20:56:42+06:00
|
||||||
|
type: portfolio
|
||||||
|
image: "images/projects/project-thumb-four.jpg"
|
||||||
|
category: ["PRODUCT LABEL"]
|
||||||
|
project_images: ["images/projects/project-details-image-one.jpg", "images/projects/project-details-image-two.jpg"]
|
||||||
|
---
|
||||||
|
|
||||||
|
The “Seamless Watch” watch has all the features that users expect in a digital watch, and some unusual features.
|
||||||
|
|
||||||
|
|
||||||
|
The watch has the following features:
|
||||||
|
|
||||||
|
Time and date displayed on the screen. Current time is in large numbers, date is in small numbers above it.
|
||||||
|
|
||||||
|
Light: Pressing the light button on the side of the watch activates a light while the button is pressed. Pressing and holding that button for 3 seconds turns on the light and keeps it on, until the button is held again for 3 seconds or up to 2 hours. After 2 hours, it will automatically turn off.
|
||||||
|
|
||||||
|
Alarm. A daily alarm may be set for a given time. The alarm may be enabled or disabled. When the alarm is enabled and the alarm time is reached, the watch will beep fast for 5 seconds, then slowly for 30 seconds, then fast for another 5 seconds. Pressing any button stops the alarm sound (in addition to performing its normal function).
|
||||||
|
|
||||||
|
Timer. Timer mode shows a count-up timer that starts at 00:00. When the timer is started, it counts up. Pressing the start/stop button will pause the timer, pressing it again continues counting up. Pressing and holding the button for 3 seconds resets the timer to 00:00 and stops counting.
|
||||||
|
|
||||||
|
Mystery answer. After entering this mode, the screen initially displays “ask now”. The user may ask a yes-or-no question aloud and press the start/stop button, this will display a randomly selected answer that is one of the following: “yeah”, “yeah right”, “no”, “no doubt”, “keep trying”, “keep dreaming”. Whenever the display has more than one word, only one word is displayed for 2 seconds, then the other word is displayed for 2 seconds, alternately. The answer is displayed until the user leaves this mode, or he/she presses start/stop again for a new answer.
|
||||||
|
|
||||||
|
|
||||||
|
Note: these strings are for the English version of the watch, we will need to use completely different strings in other countries without reprogramming the logic of the watch.
|
||||||
|
|
||||||
|
The user may cycle among all modes (date/time, timer, mystery answer) by pressing the mode button.
|
||||||
|
|
||||||
28
content/portfolio/kio-tape.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "KIO TAPE"
|
||||||
|
date: 2019-12-23T15:44:46+06:00
|
||||||
|
type: portfolio
|
||||||
|
image: "images/projects/project-thumb-four.jpg"
|
||||||
|
category: ["PRODUCT LABEL"]
|
||||||
|
project_images: ["images/projects/project-details-image-one.jpg", "images/projects/project-details-image-two.jpg"]
|
||||||
|
---
|
||||||
|
|
||||||
|
The “Seamless Watch” watch has all the features that users expect in a digital watch, and some unusual features.
|
||||||
|
|
||||||
|
|
||||||
|
The watch has the following features:
|
||||||
|
|
||||||
|
Time and date displayed on the screen. Current time is in large numbers, date is in small numbers above it.
|
||||||
|
|
||||||
|
Light: Pressing the light button on the side of the watch activates a light while the button is pressed. Pressing and holding that button for 3 seconds turns on the light and keeps it on, until the button is held again for 3 seconds or up to 2 hours. After 2 hours, it will automatically turn off.
|
||||||
|
|
||||||
|
Alarm. A daily alarm may be set for a given time. The alarm may be enabled or disabled. When the alarm is enabled and the alarm time is reached, the watch will beep fast for 5 seconds, then slowly for 30 seconds, then fast for another 5 seconds. Pressing any button stops the alarm sound (in addition to performing its normal function).
|
||||||
|
|
||||||
|
Timer. Timer mode shows a count-up timer that starts at 00:00. When the timer is started, it counts up. Pressing the start/stop button will pause the timer, pressing it again continues counting up. Pressing and holding the button for 3 seconds resets the timer to 00:00 and stops counting.
|
||||||
|
|
||||||
|
Mystery answer. After entering this mode, the screen initially displays “ask now”. The user may ask a yes-or-no question aloud and press the start/stop button, this will display a randomly selected answer that is one of the following: “yeah”, “yeah right”, “no”, “no doubt”, “keep trying”, “keep dreaming”. Whenever the display has more than one word, only one word is displayed for 2 seconds, then the other word is displayed for 2 seconds, alternately. The answer is displayed until the user leaves this mode, or he/she presses start/stop again for a new answer.
|
||||||
|
|
||||||
|
|
||||||
|
Note: these strings are for the English version of the watch, we will need to use completely different strings in other countries without reprogramming the logic of the watch.
|
||||||
|
|
||||||
|
The user may cycle among all modes (date/time, timer, mystery answer) by pressing the mode button.
|
||||||
28
content/portfolio/osen-clock.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "OSEN CLOCK"
|
||||||
|
date: 2019-12-23T15:56:43+06:00
|
||||||
|
type: portfolio
|
||||||
|
image: "images/projects/project-thumb-two.jpg"
|
||||||
|
category: ["PRODUCT DESIGN"]
|
||||||
|
project_images: ["images/projects/project-details-image-one.jpg", "images/projects/project-details-image-two.jpg"]
|
||||||
|
---
|
||||||
|
|
||||||
|
The “Seamless Watch” watch has all the features that users expect in a digital watch, and some unusual features.
|
||||||
|
|
||||||
|
|
||||||
|
The watch has the following features:
|
||||||
|
|
||||||
|
Time and date displayed on the screen. Current time is in large numbers, date is in small numbers above it.
|
||||||
|
|
||||||
|
Light: Pressing the light button on the side of the watch activates a light while the button is pressed. Pressing and holding that button for 3 seconds turns on the light and keeps it on, until the button is held again for 3 seconds or up to 2 hours. After 2 hours, it will automatically turn off.
|
||||||
|
|
||||||
|
Alarm. A daily alarm may be set for a given time. The alarm may be enabled or disabled. When the alarm is enabled and the alarm time is reached, the watch will beep fast for 5 seconds, then slowly for 30 seconds, then fast for another 5 seconds. Pressing any button stops the alarm sound (in addition to performing its normal function).
|
||||||
|
|
||||||
|
Timer. Timer mode shows a count-up timer that starts at 00:00. When the timer is started, it counts up. Pressing the start/stop button will pause the timer, pressing it again continues counting up. Pressing and holding the button for 3 seconds resets the timer to 00:00 and stops counting.
|
||||||
|
|
||||||
|
Mystery answer. After entering this mode, the screen initially displays “ask now”. The user may ask a yes-or-no question aloud and press the start/stop button, this will display a randomly selected answer that is one of the following: “yeah”, “yeah right”, “no”, “no doubt”, “keep trying”, “keep dreaming”. Whenever the display has more than one word, only one word is displayed for 2 seconds, then the other word is displayed for 2 seconds, alternately. The answer is displayed until the user leaves this mode, or he/she presses start/stop again for a new answer.
|
||||||
|
|
||||||
|
|
||||||
|
Note: these strings are for the English version of the watch, we will need to use completely different strings in other countries without reprogramming the logic of the watch.
|
||||||
|
|
||||||
|
The user may cycle among all modes (date/time, timer, mystery answer) by pressing the mode button.
|
||||||
28
content/portfolio/seamless-watch.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "SEAMLESS WATCH"
|
||||||
|
date: 2019-12-23T15:55:44+06:00
|
||||||
|
type: portfolio
|
||||||
|
image: "images/projects/project-thumb-three.jpg"
|
||||||
|
category: ["REBRAND"]
|
||||||
|
project_images: ["images/projects/project-details-image-one.jpg", "images/projects/project-details-image-two.jpg"]
|
||||||
|
---
|
||||||
|
|
||||||
|
The “Seamless Watch” watch has all the features that users expect in a digital watch, and some unusual features.
|
||||||
|
|
||||||
|
|
||||||
|
The watch has the following features:
|
||||||
|
|
||||||
|
Time and date displayed on the screen. Current time is in large numbers, date is in small numbers above it.
|
||||||
|
|
||||||
|
Light: Pressing the light button on the side of the watch activates a light while the button is pressed. Pressing and holding that button for 3 seconds turns on the light and keeps it on, until the button is held again for 3 seconds or up to 2 hours. After 2 hours, it will automatically turn off.
|
||||||
|
|
||||||
|
Alarm. A daily alarm may be set for a given time. The alarm may be enabled or disabled. When the alarm is enabled and the alarm time is reached, the watch will beep fast for 5 seconds, then slowly for 30 seconds, then fast for another 5 seconds. Pressing any button stops the alarm sound (in addition to performing its normal function).
|
||||||
|
|
||||||
|
Timer. Timer mode shows a count-up timer that starts at 00:00. When the timer is started, it counts up. Pressing the start/stop button will pause the timer, pressing it again continues counting up. Pressing and holding the button for 3 seconds resets the timer to 00:00 and stops counting.
|
||||||
|
|
||||||
|
Mystery answer. After entering this mode, the screen initially displays “ask now”. The user may ask a yes-or-no question aloud and press the start/stop button, this will display a randomly selected answer that is one of the following: “yeah”, “yeah right”, “no”, “no doubt”, “keep trying”, “keep dreaming”. Whenever the display has more than one word, only one word is displayed for 2 seconds, then the other word is displayed for 2 seconds, alternately. The answer is displayed until the user leaves this mode, or he/she presses start/stop again for a new answer.
|
||||||
|
|
||||||
|
|
||||||
|
Note: these strings are for the English version of the watch, we will need to use completely different strings in other countries without reprogramming the logic of the watch.
|
||||||
|
|
||||||
|
The user may cycle among all modes (date/time, timer, mystery answer) by pressing the mode button.
|
||||||
28
content/portfolio/use-less-brand.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "USE-LESS BRAND"
|
||||||
|
date: 2019-12-23T15:58:10+06:00
|
||||||
|
type: portfolio
|
||||||
|
image: "images/projects/project-thumb-one.jpg"
|
||||||
|
category: ["UI UX"]
|
||||||
|
project_images: ["images/projects/project-details-image-one.jpg", "images/projects/project-details-image-two.jpg"]
|
||||||
|
---
|
||||||
|
|
||||||
|
The “Seamless Watch” watch has all the features that users expect in a digital watch, and some unusual features.
|
||||||
|
|
||||||
|
|
||||||
|
The watch has the following features:
|
||||||
|
|
||||||
|
Time and date displayed on the screen. Current time is in large numbers, date is in small numbers above it.
|
||||||
|
|
||||||
|
Light: Pressing the light button on the side of the watch activates a light while the button is pressed. Pressing and holding that button for 3 seconds turns on the light and keeps it on, until the button is held again for 3 seconds or up to 2 hours. After 2 hours, it will automatically turn off.
|
||||||
|
|
||||||
|
Alarm. A daily alarm may be set for a given time. The alarm may be enabled or disabled. When the alarm is enabled and the alarm time is reached, the watch will beep fast for 5 seconds, then slowly for 30 seconds, then fast for another 5 seconds. Pressing any button stops the alarm sound (in addition to performing its normal function).
|
||||||
|
|
||||||
|
Timer. Timer mode shows a count-up timer that starts at 00:00. When the timer is started, it counts up. Pressing the start/stop button will pause the timer, pressing it again continues counting up. Pressing and holding the button for 3 seconds resets the timer to 00:00 and stops counting.
|
||||||
|
|
||||||
|
Mystery answer. After entering this mode, the screen initially displays “ask now”. The user may ask a yes-or-no question aloud and press the start/stop button, this will display a randomly selected answer that is one of the following: “yeah”, “yeah right”, “no”, “no doubt”, “keep trying”, “keep dreaming”. Whenever the display has more than one word, only one word is displayed for 2 seconds, then the other word is displayed for 2 seconds, alternately. The answer is displayed until the user leaves this mode, or he/she presses start/stop again for a new answer.
|
||||||
|
|
||||||
|
|
||||||
|
Note: these strings are for the English version of the watch, we will need to use completely different strings in other countries without reprogramming the logic of the watch.
|
||||||
|
|
||||||
|
The user may cycle among all modes (date/time, timer, mystery answer) by pressing the mode button.
|
||||||
4
data/clients.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
enable : true
|
||||||
|
title : "Who trust our judgment"
|
||||||
|
client_logos :
|
||||||
|
["images/clients/client-logo-one.png", "images/clients/client-logo-two.png", "images/clients/client-logo-three.png", "images/clients/client-logo-four.png", "images/clients/client-logo-five.png", "images/clients/client-logo-six.png", "images/clients/client-logo-seven.png", "images/clients/client-logo-eight.png", "images/clients/client-logo-nine.png", "images/clients/client-logo-ten.png"]
|
||||||
13
data/contact.yml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
enable : true
|
||||||
|
contactFormTitle : CONTACT WITH ME
|
||||||
|
contactFormSubtitle : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolore, ea! consectetur adipisicing elit. Dolore, ea!
|
||||||
|
mapTitle : FIND US
|
||||||
|
mapSubtitle : >
|
||||||
|
Si aute quis eu proident o cupidatat ne anim nescius, et est praesentibus, o quorum vidisse expetendis, nostrud eram quibusdam ad nam nostrud ubi.
|
||||||
|
officeAddress1 : 125, Kings Street, Melbourne United Kingdom,600562
|
||||||
|
officeAddress2 : 925, Lab Street, San Fransisco, United State 90278
|
||||||
|
mail1 : support@timer.com
|
||||||
|
mail2 : info@timer.com
|
||||||
|
phone1: +07 052 245 022
|
||||||
|
phone2: +07 052 245 025
|
||||||
14
data/counter.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
enable : false
|
||||||
|
heading : "THE PROOF IS IN THE PUDDING!"
|
||||||
|
counter_item:
|
||||||
|
- title: "Happy Clients"
|
||||||
|
number: "250"
|
||||||
|
|
||||||
|
- title: "Projects Completed"
|
||||||
|
number: "100"
|
||||||
|
|
||||||
|
- title: "Cups of coffee"
|
||||||
|
number: "350"
|
||||||
|
|
||||||
|
- title: "Telephone Talks"
|
||||||
|
number: "775"
|
||||||
34
data/feature.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
enable : true
|
||||||
|
title : Offer From Me
|
||||||
|
subtitle: >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sed, <br> quasi dolores numquam dolor vero ex, tempora commodi repellendus quod laborum.
|
||||||
|
item :
|
||||||
|
- icon : ion-ios-flask-outline
|
||||||
|
title : Media heading
|
||||||
|
description : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum, sint.
|
||||||
|
|
||||||
|
- icon : ion-ios-lightbulb-outline
|
||||||
|
title : Well documented.
|
||||||
|
description : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum, sint.
|
||||||
|
|
||||||
|
- icon : ion-ios-americanfootball-outline
|
||||||
|
title : Free updates
|
||||||
|
description : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum, sint.
|
||||||
|
|
||||||
|
- icon : ion-ios-keypad-outline
|
||||||
|
title : Solid Support
|
||||||
|
description : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum, sint.
|
||||||
|
|
||||||
|
- icon : ion-ios-barcode-outline
|
||||||
|
title : Simple Installation
|
||||||
|
description : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum, sint.
|
||||||
|
|
||||||
|
- icon : ion-ios-lightbulb-outline
|
||||||
|
title : Well documented.
|
||||||
|
description : >
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum, sint.
|
||||||
8
data/gallery.yml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
enable : true
|
||||||
|
galleryImages :
|
||||||
|
- image : images/portfolio/item-1.jpg
|
||||||
|
- image : images/portfolio/item-2.jpg
|
||||||
|
- image : images/portfolio/item-3.jpg
|
||||||
|
- image : images/portfolio/item-4.jpg
|
||||||
|
- image : images/portfolio/item-5.jpg
|
||||||
|
- image : images/portfolio/item-6.jpg
|
||||||
24
data/service.yml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
enable : true
|
||||||
|
title : WHAT WE LOVE TO DO
|
||||||
|
subtitle: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis porro recusandae non quibusdam iure adipisci.
|
||||||
|
image : images/team.jpg
|
||||||
|
serviceItem :
|
||||||
|
- icon : ion-ios-paper-outline
|
||||||
|
title : BRANDING
|
||||||
|
description: >
|
||||||
|
Veritatis eligendi, dignissimos. Porta fermentum mus aute pulvinar earum minus platea massa feugiat rutrum urna facilisi ipsameum
|
||||||
|
|
||||||
|
- icon : ion-ios-pint-outline
|
||||||
|
title : DESIGN
|
||||||
|
description: >
|
||||||
|
Veritatis eligendi, dignissimos. Porta fermentum mus aute pulvinar earum minus platea massa feugiat rutrum urna facilisi ipsameum
|
||||||
|
|
||||||
|
- icon : ion-ios-paper-outline
|
||||||
|
title : DEVELOPMENT
|
||||||
|
description: >
|
||||||
|
Veritatis eligendi, dignissimos. Porta fermentum mus aute pulvinar earum minus platea massa feugiat rutrum urna facilisi ipsameum
|
||||||
|
|
||||||
|
- icon : ion-ios-paper-outline
|
||||||
|
title : THEMEING
|
||||||
|
description: >
|
||||||
|
Veritatis eligendi, dignissimos. Porta fermentum mus aute pulvinar earum minus platea massa feugiat rutrum urna facilisi ipsameum
|
||||||
44
data/team.yml
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
enable : true
|
||||||
|
title : Team that makes the difference.
|
||||||
|
members :
|
||||||
|
- image : images/team/team-member-one.jpg
|
||||||
|
name : PABLO ESCOBAR
|
||||||
|
designation : Creative Director
|
||||||
|
medium : https://www.medium.com/
|
||||||
|
linkedin : https://www.linkedin.com/
|
||||||
|
instagram : https://www.instagram.com/
|
||||||
|
|
||||||
|
- image : images/team/team-member-two.jpg
|
||||||
|
name : MONTINO RIAU
|
||||||
|
designation : Product Manager
|
||||||
|
medium : https://www.medium.com/
|
||||||
|
linkedin : https://www.linkedin.com/
|
||||||
|
instagram : https://www.instagram.com/
|
||||||
|
|
||||||
|
- image : images/team/team-member-three.jpg
|
||||||
|
name : ALEX NAASRI
|
||||||
|
designation : Chief Design Officer
|
||||||
|
medium : https://www.medium.com/
|
||||||
|
linkedin : https://www.linkedin.com/
|
||||||
|
instagram : https://www.instagram.com/
|
||||||
|
|
||||||
|
- image : images/team/team-member-four.jpg
|
||||||
|
name : HONGMAN CHIOA
|
||||||
|
designation : UX Researcher
|
||||||
|
medium : https://www.medium.com/
|
||||||
|
linkedin : https://www.linkedin.com/
|
||||||
|
instagram : https://www.instagram.com/
|
||||||
|
|
||||||
|
- image : images/team/team-member-five.jpg
|
||||||
|
name : SANTIO ANDRESS
|
||||||
|
designation : Content Researcher
|
||||||
|
medium : https://www.medium.com/
|
||||||
|
linkedin : https://www.linkedin.com/
|
||||||
|
instagram : https://www.instagram.com/
|
||||||
|
|
||||||
|
- image : images/team/team-member-six.jpg
|
||||||
|
name : RAMESH PAUL
|
||||||
|
designation : Creative Designer
|
||||||
|
medium : https://www.medium.com/
|
||||||
|
linkedin : https://www.linkedin.com/
|
||||||
|
instagram : https://www.instagram.com/
|
||||||
39
data/testimonial.yml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
enable : false
|
||||||
|
title : "OPINION FROM REAL PEOPLE"
|
||||||
|
subtitle: "What clients says about our services."
|
||||||
|
testimonial_item :
|
||||||
|
- thumb : "images/testimonial/user-thumb-one.jpg"
|
||||||
|
name : "Simonns Hodge"
|
||||||
|
company_position: "CEO, Credito"
|
||||||
|
quote : >
|
||||||
|
"Trust us we looked for a very long time and wasted thousands of dollars testing other teams, freelancers, and outsource companies."
|
||||||
|
|
||||||
|
- thumb : "images/testimonial/user-thumb-two.jpg"
|
||||||
|
name : "Rekon Montino"
|
||||||
|
company_position: "CDO, Bulmuci"
|
||||||
|
quote : >
|
||||||
|
"Roxo products have allowed us to deliver better support to all our clients. The agility with which we can implement new features and workflows is a key element."
|
||||||
|
|
||||||
|
- thumb : "images/testimonial/user-thumb-three.jpg"
|
||||||
|
name : "Ryan Hillary"
|
||||||
|
company_position: "MD, Udilamo"
|
||||||
|
quote : >
|
||||||
|
"We’re a really busy restaurant, and roxo gives our customers a easy way to order, pay, and pick up their food so they can beat the line and beat that lunch rush."
|
||||||
|
|
||||||
|
- thumb : "images/testimonial/user-thumb-four.jpg"
|
||||||
|
name : "Dockrel Kahn"
|
||||||
|
company_position: "PM, Walmet"
|
||||||
|
quote : >
|
||||||
|
"Trust us we looked for a very long time and wasted thousands of dollars testing other teams, freelancers, and outsource companies."
|
||||||
|
|
||||||
|
- thumb : "images/testimonial/user-thumb-five.jpg"
|
||||||
|
name : "Orino Monteno"
|
||||||
|
company_position: "CEO, Axion"
|
||||||
|
quote : >
|
||||||
|
"Roxo products have allowed us to deliver better support to all our clients. The agility with which we can implement new features and workflows is a key element."
|
||||||
|
|
||||||
|
- thumb : "images/testimonial/user-thumb-six.jpg"
|
||||||
|
name : "Welfo Roy"
|
||||||
|
company_position: "PDO, Komoyo"
|
||||||
|
quote : >
|
||||||
|
"We’re a really busy restaurant, and roxo gives our customers a easy way to order, pay, and pick up their food so they can beat the line and beat that lunch rush."
|
||||||
9
static/images/angle-down-select.svg
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="15.698" height="9.17" viewBox="0 0 15.698 9.17">
|
||||||
|
<g id="down-arrow" transform="translate(0 -127.244)">
|
||||||
|
<g id="_x31_0_34_" transform="translate(0 127.244)">
|
||||||
|
<g id="Group_20" data-name="Group 20">
|
||||||
|
<path id="Path_24" data-name="Path 24" d="M15.505,127.438a.655.655,0,0,0-.929,0l-6.727,7.382-6.728-7.382a.655.655,0,0,0-.929,0,.663.663,0,0,0,0,.934l7.159,7.855a.648.648,0,0,0,.5.187.647.647,0,0,0,.5-.187l7.16-7.856A.662.662,0,0,0,15.505,127.438Z" transform="translate(0 -127.244)" fill="#eaa4a4"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 595 B |
6
static/images/arrow-down.svg
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="26.07" height="32.634" viewBox="0 0 26.07 32.634">
|
||||||
|
<g id="download" transform="translate(-3.282)">
|
||||||
|
<path id="Path_1" data-name="Path 1" d="M16.317,32.634a.5.5,0,0,1-.5-.5V.5a.5.5,0,0,1,1,0V32.134A.5.5,0,0,1,16.317,32.634Z" fill="#00113e"/>
|
||||||
|
<path id="Path_2" data-name="Path 2" d="M16.315,32.634h0a.5.5,0,0,1-.354-.146L3.428,19.951a.5.5,0,0,1,.707-.707L16.314,31.427,28.5,19.244a.5.5,0,1,1,.707.707L16.668,32.487A.5.5,0,0,1,16.315,32.634Z" fill="#00113e"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 527 B |
BIN
static/images/backgrounds/cta-background.jpg
Normal file
|
After Width: | Height: | Size: 402 KiB |
BIN
static/images/backgrounds/hero-background.jpg
Normal file
|
After Width: | Height: | Size: 495 KiB |
BIN
static/images/backgrounds/landing-background.jpg
Normal file
|
After Width: | Height: | Size: 890 KiB |
BIN
static/images/blog/blog-details-image-02.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
static/images/blog/blog-details-image.jpg
Normal file
|
After Width: | Height: | Size: 188 KiB |
BIN
static/images/blog/blog-post-01.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
static/images/blog/blog-post-02.jpg
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
static/images/blog/blog-post-03.jpg
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
static/images/blog/blog-post-04.jpg
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
static/images/clients/client-logo-eight.png
Normal file
|
After Width: | Height: | Size: 700 B |
BIN
static/images/clients/client-logo-five.png
Normal file
|
After Width: | Height: | Size: 919 B |
BIN
static/images/clients/client-logo-four.png
Normal file
|
After Width: | Height: | Size: 827 B |
BIN
static/images/clients/client-logo-nine.png
Normal file
|
After Width: | Height: | Size: 830 B |
BIN
static/images/clients/client-logo-one.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
static/images/clients/client-logo-seven.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/images/clients/client-logo-six.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/images/clients/client-logo-ten.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
static/images/clients/client-logo-three.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
static/images/clients/client-logo-two.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
static/images/favicon.ico
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
static/images/favicon.png
Normal file
|
After Width: | Height: | Size: 527 B |
BIN
static/images/logo-footer.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
static/images/logo.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
static/images/projects/project-details-image-one.jpg
Normal file
|
After Width: | Height: | Size: 85 KiB |
BIN
static/images/projects/project-details-image-two.jpg
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
static/images/projects/project-thumb-four.jpg
Normal file
|
After Width: | Height: | Size: 148 KiB |
BIN
static/images/projects/project-thumb-one.jpg
Normal file
|
After Width: | Height: | Size: 178 KiB |
BIN
static/images/projects/project-thumb-three.jpg
Normal file
|
After Width: | Height: | Size: 170 KiB |
BIN
static/images/projects/project-thumb-two.jpg
Normal file
|
After Width: | Height: | Size: 296 KiB |
BIN
static/images/team/team-member-five.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
static/images/team/team-member-four.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
static/images/team/team-member-one.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
static/images/team/team-member-six.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
static/images/team/team-member-three.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
static/images/team/team-member-two.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
static/images/testimonial/user-thumb-five.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/images/testimonial/user-thumb-four.jpg
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
static/images/testimonial/user-thumb-one.jpg
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
static/images/testimonial/user-thumb-six.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/images/testimonial/user-thumb-three.jpg
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
static/images/testimonial/user-thumb-two.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
6
static/images/to-top.svg
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="26.071" height="32.634" viewBox="0 0 26.071 32.634">
|
||||||
|
<g id="upload" transform="translate(-3.282)">
|
||||||
|
<path id="Path_3" data-name="Path 3" d="M16.317,32.634a.5.5,0,0,1-.5-.5V.5a.5.5,0,0,1,1,0V32.134A.5.5,0,0,1,16.317,32.634Z" fill="#fff"/>
|
||||||
|
<path id="Path_4" data-name="Path 4" d="M28.852,13.536a.5.5,0,0,1-.354-.146L16.319,1.207,4.135,13.39a.5.5,0,0,1-.707-.707L15.966.146A.5.5,0,0,1,16.319,0h0a.5.5,0,0,1,.354.146L29.206,12.682a.5.5,0,0,1-.354.854Z" fill="#fff"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 533 B |