Skip to content

Commit a0ca5e3

Browse files
chore: Call it Frappe Studio
1 parent dd1e6cb commit a0ca5e3

10 files changed

Lines changed: 19 additions & 15 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## Website Builder
1+
# Frappe Studio
22

3-
A simple website builder for Frappe apps
3+
An easier way to build web pages for your needs!
44

55
#### License
66

frontend/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Website Builder
1+
# Frappe Studio
22

3-
A simple website builder!
3+
An easier way to build web pages for your needs!

frontend/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" href="/favicon.png" />
5+
<link rel="icon" href="/frappe_black.png" media="(prefers-color-scheme: light)"/>
6+
<link rel="icon" href="/frappe_white.png" media="(prefers-color-scheme: dark)"/>
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>pages</title>
8+
<title>Studio</title>
89
</head>
910
<body class="overscroll-none dark:bg-zinc-800">
1011
<div id="app"></div>

frontend/public/frappe_black.png

266 Bytes
Loading

frontend/public/frappe_white.png

232 Bytes
Loading

frontend/src/components/BuilderToolbar.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
<div class="toolbar flex h-14 items-center justify-center bg-white p-2 shadow-sm" ref="toolbar">
33
<div class="absolute left-3 flex items-center">
44
<router-link class="flex items-center" :to="{ name: 'home' }">
5-
<img src="/favicon.png" alt="logo" class="h-6" />
6-
<h1 class="ml-1 text-base text-gray-600 dark:text-gray-500">pages</h1>
5+
<img src="/frappe_black.png" alt="logo" class="h-5 dark:hidden" />
6+
<img src="/frappe_white.png" alt="logo" class="hidden h-5 dark:block" />
7+
<h1 class="text-base text-gray-800 dark:text-gray-200">Studio</h1>
78
</router-link>
89
</div>
910
<div class="ml-10 flex gap-3">

frontend/src/pages/PageBuilderLanding.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<template>
22
<div class="toolbar flex h-14 justify-center bg-white p-2 shadow-sm dark:bg-zinc-900">
33
<div class="absolute left-3 mt-2 flex items-center">
4-
<img src="/favicon.png" alt="logo" class="h-6" />
5-
<h1 class="ml-1 text-base text-gray-600 dark:text-gray-500">pages</h1>
4+
<img src="/frappe_black.png" alt="logo" class="h-5 dark:hidden" />
5+
<img src="/frappe_white.png" alt="logo" class="hidden h-5 dark:block" />
6+
<h1 class="text-base text-gray-800 dark:text-gray-200">Studio</h1>
67
</div>
78
</div>
89
<section class="max-w-800 m-auto flex w-3/4 flex-wrap gap-x-3 gap-y-4 pt-10">

frontend/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default defineConfig({
2828
function getProxyOptions({ port }) {
2929
return {
3030
"^/(app|login|api|assets|files|pages)": {
31-
target: `http://localhost:${port}`,
31+
target: `http://127.0.0.1:${port}`,
3232
ws: true,
3333
router: function (req) {
3434
const site_name = req.headers.host.split(":")[0];

website_builder/hooks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from . import __version__ as app_version
22

3-
app_name = "website_builder"
4-
app_title = "Website Builder"
3+
app_name = "studio"
4+
app_title = "Frappe Studio"
55
app_publisher = "Frappe Technologies Pvt Ltd"
6-
app_description = "A simple website builder"
6+
app_description = "An easier way to build web pages for your needs!"
77
app_email = "suraj@frappe.io"
88
app_license = "MIT"
99

website_builder/templates/generators/webpage.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>{{title}}</title>
88
<meta name="description" content="Placeholder">
9-
<link rel="icon" type="image/png" href="/favicon.png">
9+
<link rel="icon" href="/frappe_black.png" media="(prefers-color-scheme: light)"/>
10+
<link rel="icon" href="/frappe_white.png" media="(prefers-color-scheme: dark)"/>
1011
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1112
<link rel="preconnect" href="https://fonts.googleapis.com">
1213
{% for (font, options) in fonts.items() %}

0 commit comments

Comments
 (0)