This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
body, | |
html { | |
--font-sans: | |
'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import { Button } from '@/components/ui/button' | |
import { Badge } from '@/components/ui/badge' | |
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover' | |
import { Command } from '@/components/ui/command' | |
import { Input } from '@/components/ui/input' | |
import { Switch } from '@/components/ui/switch' | |
import { Label } from '@/components/ui/label' | |
import { | |
Select, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import { | |
Pagination, | |
PaginationEllipsis, | |
PaginationFirst, | |
PaginationLast, | |
PaginationList, | |
PaginationListItem, | |
PaginationNext, | |
PaginationPrev, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location /v2/ { | |
proxy_pass http://ip/; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<Head title="AI Chat" /> | |
<AppLayout :breadcrumbs="breadcrumbs"> | |
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4"> | |
<!-- Main Chat Interface --> | |
<div class="flex flex-1 gap-4 min-h-0"> | |
<!-- Chat Messages Area --> | |
<div class="flex-1 flex flex-col min-h-0"> | |
<!-- Chat Messages --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
import { defineComponent } from 'vue'; | |
import { Badge } from '@/components/ui/badge'; | |
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'; | |
import { ScrollArea, ScrollBar } from '@/components/ui/scroll-area'; | |
import { Separator } from '@/components/ui/separator'; | |
export default defineComponent({ | |
name: 'CountriesList', | |
components: { Badge, ScrollArea, Popover, PopoverContent, PopoverTrigger, Separator, ScrollBar }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import { CheckIcon, PlusCircledIcon } from "@radix-icons/vue"; | |
import { Separator } from "@/components/ui/separator"; | |
import { Badge } from "@/components/ui/badge"; | |
import { Button } from "@/components/ui/button"; | |
import { Popover,PopoverContent, PopoverTrigger } from "@/components/ui/popover"; | |
import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator } from "@/components/ui/command"; | |
import { cn } from '@/lib/utils' | |
export default { |