Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added services/client/favicon.ico
Binary file not shown.
88 changes: 88 additions & 0 deletions services/client/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions services/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Moogle</title>
<link href="/src/style.css" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<link rel="alternate icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<script>0</script>
Expand Down
Binary file added services/query-engine/.DS_Store
Binary file not shown.
Binary file added services/query-engine/public/.DS_Store
Binary file not shown.
Binary file modified services/query-engine/public/favicon.ico
Binary file not shown.
88 changes: 88 additions & 0 deletions services/query-engine/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@vite('resources/css/app.css')
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="alternate icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="apple-touch-icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="mask-icon" type="image/svg+xml" href="{{asset('favicon.svg')}}" color="#000000">
<title>Life Ain't Cringe</title>
</head>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
<head>
<meta charset="UTF-8">
<title>Graph View</title>
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="alternate icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="apple-touch-icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="mask-icon" type="image/svg+xml" href="{{asset('favicon.svg')}}" color="#000000">
<style>
html {
color: black;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@vite('resources/css/app.css')
<link rel="alternate icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="apple-touch-icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="mask-icon" type="image/svg+xml" href="{{asset('favicon.svg')}}" color="#000000">
<title>Search Image Results for "{{ $query }}"</title>
</head>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@vite('resources/css/app.css')
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="alternate icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="apple-touch-icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="mask-icon" type="image/svg+xml" href="{{asset('favicon.svg')}}" color="#000000">
<title>Search Results for "{{ $originalQuery }}"</title>
</head>

Expand Down
4 changes: 4 additions & 0 deletions services/query-engine/resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="alternate icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="apple-touch-icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}">
<link rel="mask-icon" type="image/svg+xml" href="{{asset('favicon.svg')}}" color="#000000">

<title>Laravel</title>

Expand Down