diff --git a/public/index.html b/public/index.html index 00f86301..087cbf25 100644 --- a/public/index.html +++ b/public/index.html @@ -8,7 +8,6 @@ - Allchat diff --git a/src/App.js b/src/App.js index 7e05f8d5..8dc32328 100644 --- a/src/App.js +++ b/src/App.js @@ -176,7 +176,7 @@ function App() { bgcolor="#d4edda" color="#155724" padding={1} - style={{ fontFamily: "Chilanka" }} + style={{ fontFamily: "cursive" }} borderRadius={2} > {chat.user} @@ -188,7 +188,7 @@ function App() { padding={1} marginTop={1} borderRadius={2} - style={{ fontFamily: "Chilanka" }} + style={{ fontFamily: "cursive" }} > {isModelResponding && chat.assistant === null && } {chat.assistant !== null && {chat.assistant}} diff --git a/src/theme.js b/src/theme.js index a480723b..3dc7626e 100644 --- a/src/theme.js +++ b/src/theme.js @@ -12,7 +12,7 @@ const theme = (mode) => }, }, typography: { - fontFamily: "Chilanka", + fontFamily: ["cursive"].join(","), }, });