update: add shafafiat pages

This commit is contained in:
mahyargdz
2024-11-19 14:01:47 +03:30
parent 1c89bc5f08
commit 256924dd3a
15 changed files with 329 additions and 26 deletions
+15
View File
@@ -0,0 +1,15 @@
const { model } = require("mongoose");
const { Schema } = require("mongoose");
const ShafafSchema = Schema(
{
title: { type: String },
icon: { type: String },
link: { type: String },
},
{
timestamps: true,
}
);
module.exports = model("Shafaf", ShafafSchema);