Skip to content

Commit

Permalink
Merge branch 'feature/fix-style-issues' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
SebConejo committed Dec 11, 2024
2 parents cc7609b + 30d2194 commit 43f48a6
Show file tree
Hide file tree
Showing 7 changed files with 106 additions and 108 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/assets/images/adminpanel.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions src/app/components/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@ export const FAQ: React.FC = () => {

const faqs: FAQItem[] = [
{
question: 'Is Manifest a framework?',
answer:
'No, Manifest is a self-hostable Backend-as-a-Service (BaaS). It is a service that enables developers to easily build a backend, providing the essential building blocks to get started.'
question: 'What is a headless CMS ?',
answer: `A classical CMS manages the backend and the frontend part. A Headless CMS removes the frontend so you are free to use your own one, using an API to connect to it. Manifest also covers the "back-office" / "admin panel" as it can be seen as part of the "backend"`
},
{
question: 'Is Manifest full-stack?',
question: 'Is Manifest a low-code / no-code tool ?',
answer:
'No, you will still need to develop your frontend. Manifest covers the backend of your app/website only (considering the built-in admin panel as part of the backend/back-office).'
"No. It just works like just any other file in your codebase. It's code, simple code."
},
{
question: 'Is Manifest for me?',
answer:
'If you know a bit of software development, whatever your programming language is, you will have no problem using Manifest.'
'It does not matter if you are junior or senior developer, if you code in JS, PHP or Python. You can be frontend, backend or fullstack, a mobile developer, indie hacker or devsigner. If you know a bit of software development, you will have no problem using Manifest.'
},
{
question: 'Can I use Manifest in production?',
Expand Down
4 changes: 3 additions & 1 deletion src/app/components/LiveCodeHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ entities:
<div className="tab-ide">
<i className="fa-solid fa-exclamation has-text-primary-light is-italic"></i>
<span>backend.yml</span>
<span>manifest/backend.yml</span>
<span className="is-size-8 pt-1 has-text-grey-light">
manifest/backend.yml
</span>
<i className="fa-solid fa-xmark"></i>
</div>
<div className="toolbar has-text-grey">
Expand Down
28 changes: 27 additions & 1 deletion src/app/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,10 @@ body {
backdrop-filter: saturate(175%) blur(6px);
}

.p-64 {
padding: 64px;
}

.navbar.has-background-transparent {
background-color: transparent;
}
Expand Down Expand Up @@ -1291,6 +1295,9 @@ button,
mix-blend-mode: multiply;
background-size: contain;
}
.has-background-pearl {
background-color: #fdfbfd;
}
.has-background-wheel {
position: absolute;
top: 0;
Expand Down Expand Up @@ -1514,7 +1521,8 @@ main .content a:not(.button):not(.icon-text) {
}
}

.tag.is-small {
.tag.is-small,
.is-size-8 {
font-size: $size-8;
}

Expand Down Expand Up @@ -2201,3 +2209,21 @@ main .content a:not(.button):not(.icon-text) {
#embed-editor {
background-color: utilities.$white-bis;
}

.is-object-fit-cover {
object-fit: cover;
width: 100%;
height: 100%;
}
.is-object-fit-contain {
object-fit: contain;
width: 100%;
height: 100%;
}
.is-object-position-left {
object-position: left;
}

.is-object-position-bottom {
object-position: bottom;
}
8 changes: 4 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import './globals.scss'
const inter = Inter({ subsets: ['latin'] })

export const metadata: Metadata = {
title: 'Manifest - A Whole Backend That Fits Into 1 YAML file',
title: 'Manifest - The 1-file Headless CMS',
description:
'Complete Backend with Admin Panel, REST API, Auth, Storage and more. All in one YAML file.',
'Instant Micro-backend with Admin Panel, REST API, Auth, Storage and more. All in one YAML file.',
openGraph: {
type: 'website',
url: 'https://manifest.build',
title: 'A Whole Backend That Fits Into 1 YAML file',
title: 'Manifest - The 1-file Headless CMS',
description:
'Complete Backend with Admin Panel, REST API, Auth, Storage and more. All in one YAML file.',
'Instant Micro-backend with Admin Panel, REST API, Auth, Storage and more. All in one YAML file.',
siteName: 'Manifest',
images: [
{
Expand Down
Loading

0 comments on commit 43f48a6

Please sign in to comment.