const mongoose = require('mongoose') const Schema = mongoose.Schema const OwnerSchema = new Schema({ title: String, about: String, photo: String }) module.exports = mongoose.model('Owner', OwnerSchema)