Skip to content

Commit

Permalink
changed favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
bat-kryptonyte committed Aug 4, 2023
1 parent 5fc62c0 commit bd3c9fe
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 2 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/favicon.zip
Binary file not shown.
6 changes: 6 additions & 0 deletions public/favicon/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This favicon was generated using the following graphics from Twitter Twemoji:

- Graphics Title: 1f9d0.svg
- Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji)
- Graphics Source: https://github.com/twitter/twemoji/blob/master/assets/svg/1f9d0.svg
- Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
Binary file added public/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
3 changes: 3 additions & 0 deletions src/server/mongodb/actions/numericalProblem.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import {
mathNumericalModel,
physicsNumericalModel,
physicsImgModel,
mathTestModel,
physicsTestImgModel,
physicsTestModel
} from "../models/numerical_problem";

import { ObjectId } from "mongodb";
Expand Down
5 changes: 3 additions & 2 deletions src/server/mongodb/models/law_problem.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ const lawProblemSchema = new mongoose.Schema({
},
});

export default mongoose.models.lawProblem ||
mongoose.model("lawProblem", lawProblemSchema, "law");

export const lawProblemModel = mongoose.models.lawProblem || mongoose.model("lawProblem", lawProblemSchema, "law");
export const lawProblemTestModel = mongoose.models.lawProblemTest || mongoose.model("lawProblemTest", lawProblemSchema, "lawTest");
12 changes: 12 additions & 0 deletions src/server/mongodb/models/mcat_problem.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,15 @@ export const mcatScienceImgModel =
export const mcatScienceValModel =
mongoose.models.mcatScienceVal ||
mongoose.model("mcatScienceVal", mcatSchema, "mcat_science_val");

export const mcatReadingTestModel =
mongoose.models.mcatReadingTest ||
mongoose.model("mcatReadingTest", mcatSchema, "mcat_reading_test");

export const mcatScienceTestModel =
mongoose.models.mcatScienceTest ||
mongoose.model("mcatScienceTest", mcatSchema, "mcat_science_test");

export const mcatScienceImgTestModel =
mongoose.models.mcatScienceImgTest ||
mongoose.models("mcatScienceImgTest", mcatSchema, "mcat_science_images_test");
13 changes: 13 additions & 0 deletions src/server/mongodb/models/numerical_problem.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { m } from "framer-motion";
import mongoose from "mongoose";

const numericalProblemSchema = new mongoose.Schema({
Expand Down Expand Up @@ -58,3 +59,15 @@ export const physicsImgModel =
numericalProblemSchema,
"physics_numerical_images"
);

export const mathTestModel =
mongoose.models.mathTestProblem ||
mongoose.model("mathTestProblem", numericalProblemSchema, "math_test");

export const physicsTestModel =
mongoose.models.physicsTestProblem ||
mongoose.model("physicsTestProblem", numericalProblemSchema, "physics_test");

export const physicsTestImgModel =
mongoose.models.physicsTestImgProblem ||
mongoose.model("physicsTestImgModel", numericalProblemSchema, "physics_test_img");

0 comments on commit bd3c9fe

Please sign in to comment.