Skip to content

Commit 51e36b8

Browse files
committed
Primeiro commit
1 parent f680cc7 commit 51e36b8

16 files changed

+452
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

404.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: default
3+
title: Page Not Found
4+
permalink: /404.html
5+
---
6+
7+
<p>Sorry, the page you're looking for can't be found.<br>
8+
Head back to the <a href="{{ site.url}}">homepage</a>.</p>

Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.3.2"
4+
5+
group :jekyll_plugins do
6+
gem "jekyll-feed"
7+
end

Gemfile.lock

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
bigdecimal (3.1.8)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.4)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.17.0-arm64-darwin)
14+
forwardable-extended (2.6.0)
15+
google-protobuf (4.28.3-arm64-darwin)
16+
bigdecimal
17+
rake (>= 13)
18+
http_parser.rb (0.8.0)
19+
i18n (1.14.6)
20+
concurrent-ruby (~> 1.0)
21+
jekyll (4.3.4)
22+
addressable (~> 2.4)
23+
colorator (~> 1.0)
24+
em-websocket (~> 0.5)
25+
i18n (~> 1.0)
26+
jekyll-sass-converter (>= 2.0, < 4.0)
27+
jekyll-watch (~> 2.0)
28+
kramdown (~> 2.3, >= 2.3.1)
29+
kramdown-parser-gfm (~> 1.0)
30+
liquid (~> 4.0)
31+
mercenary (>= 0.3.6, < 0.5)
32+
pathutil (~> 0.9)
33+
rouge (>= 3.0, < 5.0)
34+
safe_yaml (~> 1.0)
35+
terminal-table (>= 1.8, < 4.0)
36+
webrick (~> 1.7)
37+
jekyll-feed (0.17.0)
38+
jekyll (>= 3.7, < 5.0)
39+
jekyll-sass-converter (3.0.0)
40+
sass-embedded (~> 1.54)
41+
jekyll-watch (2.2.1)
42+
listen (~> 3.0)
43+
kramdown (2.4.0)
44+
rexml
45+
kramdown-parser-gfm (1.1.0)
46+
kramdown (~> 2.0)
47+
liquid (4.0.4)
48+
listen (3.9.0)
49+
rb-fsevent (~> 0.10, >= 0.10.3)
50+
rb-inotify (~> 0.9, >= 0.9.10)
51+
mercenary (0.4.0)
52+
pathutil (0.16.2)
53+
forwardable-extended (~> 2.6)
54+
public_suffix (6.0.1)
55+
rake (13.2.1)
56+
rb-fsevent (0.11.2)
57+
rb-inotify (0.11.1)
58+
ffi (~> 1.0)
59+
rexml (3.3.9)
60+
rouge (4.4.0)
61+
safe_yaml (1.0.5)
62+
sass-embedded (1.80.5-arm64-darwin)
63+
google-protobuf (~> 4.28)
64+
terminal-table (3.0.2)
65+
unicode-display_width (>= 1.1.1, < 3)
66+
unicode-display_width (2.6.0)
67+
webrick (1.8.2)
68+
69+
PLATFORMS
70+
arm64-darwin
71+
72+
DEPENDENCIES
73+
jekyll (~> 4.3.2)
74+
jekyll-feed
75+
76+
BUNDLED WITH
77+
2.5.21

LICENSE.txt

+170
Large diffs are not rendered by default.

_config.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
title: Cérele — Hospedagem e otimização de sites de notícias
2+
description: Agência web especializada em sites de notícias
3+
url: "https://celere.dev"
4+
5+
markdown: kramdown
6+
7+
exclude:
8+
- README.md
9+
- LICENSE.md

_includes/.DS_Store

6 KB
Binary file not shown.

_includes/footer.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<footer>
2+
<ul>
3+
<li><a href="https://www.linkedin.com/company/celere-dev">LinkedIn</a></li>
4+
<li><a href="https://github.com/celere-dev">GitHub</a></li>
5+
<li><a href="mailto:[email protected]">Contato</a></li>
6+
</ul>
7+
</footer>

_includes/head.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-BR">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>{{ page.title }} — {{ site.title }}</title>
8+
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
9+
<link href="{{ site.baseurl }}/feed.xml" rel="alternate" type="application/atom+xml">
10+
<link rel="canonical" href="{{ site.baseurl }}{{ page.url }}">
11+
12+
<link rel="stylesheet" href="{{ site.baseurl }}/assets/style.css" media="all" />
13+
</head>
14+
15+
<body>

_includes/header.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<header>
2+
<h1 class="title">
3+
<img src="{{ site.url }}/assets/celere-logo.svg"
4+
alt="Célere" width="275" height="45"
5+
/>
6+
</h1>
7+
</header>

_layouts/.DS_Store

6 KB
Binary file not shown.

_layouts/default.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{% include head.html %}
2+
3+
{% include header.html %}
4+
5+
<main>
6+
7+
{{ content }}
8+
9+
</main>
10+
11+
{% include footer.html %}
12+
13+
</body>
14+
</html>

assets/.DS_Store

10 KB
Binary file not shown.

assets/celere-logo.svg

+1
Loading

assets/style.css

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
:root {
2+
--primary: #2f0b48;
3+
--secondary: #dedcff;
4+
--text: #050315;
5+
--accent: #433bff;
6+
--background: #fbfbfe;
7+
8+
--ff-base: ui-system, sans-serif;
9+
--ff-mono: ui-monospace, monospace;
10+
11+
--fs-0: 1rem;
12+
--fs-1: 1.2rem;
13+
--fs-2: 1.6rem;
14+
--fs-3: 2.5rem;
15+
16+
--pos-margem-baixo: 1.25rem;
17+
--pos-salto-medio: 5rem;
18+
--pos-grande-salto: 12rem;
19+
--pos-curvada: .4rem;
20+
}
21+
22+
/* CSS reset */
23+
*,
24+
*::before,
25+
*::after {
26+
box-sizing: border-box;
27+
}
28+
29+
* {
30+
margin: 0;
31+
}
32+
33+
html {
34+
color-scheme: light dark;
35+
}
36+
37+
img {
38+
max-width: 100%;
39+
}
40+
41+
body {
42+
background-color: var(--background);
43+
width: min(100% - 1rem, 64ch);
44+
margin: 2rem auto 2rem 2rem;
45+
font-family: var(--ff-base);
46+
font-size: var(--fs-1);
47+
line-height: 1.5;
48+
color: var(--text);
49+
word-wrap: break-word;
50+
overflow-wrap: break-word;
51+
-webkit-font-smoothing: antialiased;
52+
-moz-osx-font-smoothing: grayscale;
53+
text-rendering: optimizeLegibility;
54+
}
55+
56+
a {
57+
color: var(--primary);
58+
cursor: pointer;
59+
}
60+
a:hover {
61+
color: var(--accent);
62+
}
63+
64+
p,
65+
ul {
66+
margin-bottom: var(--pos-margem-baixo);
67+
}
68+
69+
h1 {
70+
font-weight: 500;
71+
line-height: 1.2;
72+
}
73+
74+
hr {
75+
height: 2px;
76+
border: none;
77+
background-color: var(--secondary);
78+
margin: var(--pos-salto-medio) auto;
79+
}
80+
81+
header {
82+
display: flex;
83+
align-items: center;
84+
justify-content: space-between;
85+
margin: var(--pos-margem-baixo) auto var(--pos-salto-medio);
86+
}
87+
88+
main {
89+
margin: 0 auto;
90+
}
91+
92+
footer {
93+
margin: var(--pos-salto-medio) auto var(--pos-margem-baixo);
94+
padding: var(--pos-margem-baixo) 0 0;
95+
}
96+
footer ul {
97+
display: flex;
98+
column-gap: 1rem;
99+
list-style: none;
100+
padding: 0;
101+
margin: 0;
102+
}
103+
104+
@media only screen and (max-width: 512px) {
105+
body {
106+
margin: 0 auto;
107+
}
108+
}

index.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: default
3+
title: Célere — Hospedagem e otimização de sites de notícias
4+
---
5+
O desafio de publicar na web já foi resolvido há décadas. Mesmo assim, ainda é comum topar com sites de notícias lentos, com UX defasada e ineficiências diversas.
6+
7+
O WordPress, sistema de gerenciamento de conteúdo mais popular do mundo, oferece uma base ótima, mas peca em vários aspectos — da ausência de recursos básicos, como um cache eficiente, à necessidade de plugins nem sempre óbvios ou fáceis de encontrar para funcionalidades complementares. É fácil de instalar; já configurá-lo bem… nem tanto.
8+
9+
A Célere surgiu para resolver esses gargalos.
10+
11+
Unindo as nossas expertises no WordPress em contextos jornalísticos à excelência em hospedagem da Automattic, oferecemos às redações brasileiras as melhores condições possíveis para que elas possam se concentrar no que importa — o editorial —, a fim de oferecer a melhor experiência possível a seus leitores.
12+
13+
O menu de serviços da Célere inclui:
14+
15+
* Migração e gerenciamento da hospedagem nos servidores da Automattic.
16+
* Otimização de leiaute, plugins e banco de dados do WordPress pautada por métricas aferíveis.
17+
* Suporte humano que entende de WordPress e de jornalismo.
18+
19+
A melhor parte? É muito provável que os nossos serviços tenham melhor custo-benefício que sua solução atual para rodar o WordPress.
20+
21+
[Vamos conversar?](https://calendly.com/celere-wp/mapeamento)
22+
23+
***
24+
25+
Clarissa Mendes
26+
27+
28+
Rodrigo Ghedin
29+

0 commit comments

Comments
 (0)