Files
Atomcms-edit/resources/themes/dusk/js/app.js
T

29 lines
803 B
JavaScript
Executable File

import "./bootstrap";
import "./external/flowbite";
import ArticleReactions from "./components/ArticleReactions.js";
ArticleReactions.init();
window.Alpine.plugin(window.AlpineFocus);
window.Alpine.start();
// Swiper Initialization
document.addEventListener("DOMContentLoaded", function () {
const swiper = new window.Swiper(".swiper", {
// Your Swiper options here
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
pagination: {
el: ".swiper-pagination",
},
});
});
console.log(
"%cAtom CMS%c\n\nAtom CMS is a CMS for made for the community to enjoy. You can join our wonderful community at https://discord.gg/rX3aShUHdg\n\n",
"color: #14619c; -webkit-text-stroke: 2px black; font-size: 32px; font-weight: bold;",
"",
);