feat: OpenAI settings page
Add a new settings page for OpenAI configuration, including a dedicated tab in the settings layout, translations, and routing.
This commit is contained in:
15
src/routes/option-settings-openai.tsx
Normal file
15
src/routes/option-settings-openai.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
||||
import OptionLayout from "~/components/Layouts/Layout"
|
||||
import { OpenAIApp } from "@/components/Option/Settings/openai"
|
||||
|
||||
const OptionOpenAI = () => {
|
||||
return (
|
||||
<OptionLayout>
|
||||
<SettingsLayout>
|
||||
<OpenAIApp />
|
||||
</SettingsLayout>
|
||||
</OptionLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export default OptionOpenAI
|
||||
Reference in New Issue
Block a user