File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- # Website Builder
1+ # Frappe Studio
22
3- A simple website builder !
3+ An easier way to build web pages for your needs !
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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" >
Original file line number Diff line number Diff line change 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" >
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export default defineConfig({
2828function 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 ] ;
Original file line number Diff line number Diff line change 11from . 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 "
55app_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! "
77app_email = "suraj@frappe.io"
88app_license = "MIT"
99
Original file line number Diff line number Diff line change 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() %}
You can’t perform that action at this time.
0 commit comments