Files
musicland/src/assets/index.js
T
2025-09-30 13:37:12 +02:00

250 lines
5.6 KiB
JavaScript

import addTab from "./UI/tabs/add.png";
import albums from "./UI/tabs/albums.png";
import chat from "./UI/tabs/chat.png";
import design from "./UI/tabs/design.png";
import home from "./UI/tabs/home.png";
import mic from "./UI/tabs/mic.png";
import person from "./UI/tabs/person.png";
import quotes from "./UI/tabs/quotes.png";
import ribbon from "./UI/tabs/ribbon.png";
import settings from "./UI/tabs/settings.png";
import tasks from "./UI/tabs/tasks.png";
import bell from "./UI/bell.png";
import sort from "./UI/sort.png";
import arrowRight from "./UI/arrowRight.png";
import chevronDown from "./UI/chevronDown.png";
import threeDots from "./UI/threeDots.png";
import thumbDown from "./UI/thumbDown.png";
import thumbUp from "./UI/thumbUp.png";
import add from "./UI/add.png";
import addFile from "./UI/addFile.png";
import check from "./UI/check.png";
import checkCircle from "./UI/checkCircle.png";
import deliveryTime from "./UI/deliveryTime.png";
import edit from "./UI/edit.png";
import eye from "./UI/eye.png";
import lock from "./UI/lock.png";
import message from "./UI/message.png";
import search from "./UI/search.png";
import send from "./UI/send.png";
import shoppingBag from "./UI/shoppingBag.png";
import tools from "./UI/tools.png";
import trash from "./UI/trash.png";
import undo from "./UI/undo.png";
import focus from "./UI/focus.png";
import picture from "./UI/picture.png";
import screenshot from "./UI/screenshot.png";
import android from "./UI/android.png";
import ios from "./UI/ios.png";
import web from "./UI/web.png";
import law from "./UI/law.png";
import support from "./UI/support.png";
import user from "./UI/user.png";
import attachment from "./UI/attachment.png";
import cloud from "./icons/cloud.png";
import dashboard from "./icons/dashboard.png";
import file from "./icons/file.png";
import circle from "./art/circle.png";
import gradientTriangle from "./art/gradientTriangle.png";
import square from "./art/square.png";
import triangle from "./art/triangle.png";
import algolia from "./icons/algolia.png";
import calendar from "./icons/calendar.png";
import chatBubble from "./icons/chatBubble.png";
import close from "./icons/close.png";
import coin from "./icons/coin.png";
import disk from "./icons/disk.png";
import figma from "./icons/figma.png";
import forward from "./icons/forward.png";
import gitlab from "./icons/gitlab.png";
import heart from "./icons/heart.png";
import heartOutline from "./icons/heartOutline.png";
import hitParadeLogo from "./icons/hitParadeLogo.png";
import more from "./icons/more.png";
import musicLandLogo from "./icons/musicLandLogo.png";
import pause from "./icons/pause.png";
import play from "./icons/play.png";
import share from "./icons/share.png";
import stars from "./icons/stars.png";
import boost from "./art/boost.png";
import boostBig from "./art/boostBig.png";
import threeCoins from "./art/threeCoins.png";
import tutorialChat from "./tutorial/chat.png";
import coins from "./tutorial/coins.png";
import followProgress from "./tutorial/followProgress.png";
import tutorialTasks from "./tutorial/tasks.png";
import welcome from "./tutorial/welcome.png";
import hitParadeBG from "./UI/hitParadeBG.png";
import homeBG from "./UI/homeBG.png";
import libraryBG from "./UI/libraryBG.png";
import libraryBG2 from "./UI/libraryBG2.png";
import playbackBG from "./UI/playbackBG.png";
import playbackBG2 from "./UI/playbackBG2.png";
import productionBG from "./UI/productionBG.png";
import productionBG2 from "./UI/productionBG2.png";
import profileBG from "./UI/profileBG.png";
import studioBG from "./UI/studioBG.png";
import studioBG2 from "./UI/studioBG2.png";
import writingBG from "./UI/writingBG.png";
import bena from "./UI/bena.png";
import john from "./UI/john.png";
import nathalie from "./UI/nathalie.png";
import theo from "./UI/theo.png";
import goodVibe from "./UI/goodVibe.png";
import placeholder from "./UI/placeholder.jpg";
import placeholder2 from "./UI/placeholder2.jpg";
import placeholder3 from "./UI/placeholder3.png";
import placeholder4 from "./UI/placeholder4.jpg";
import profile from "./UI/profile.jpg";
import { Platform } from "react-native";
export const tabs = {
home,
tasks,
settings,
quotes,
chat,
design,
addTab,
albums,
ribbon,
mic,
person,
};
export const icons = {
bell,
sort,
dragDots: require("./icons/dragDots.png"),
chevronDown,
arrowRight,
threeDots,
thumbUp,
thumbDown,
chatBubble,
add,
search,
addFile,
send,
eye,
edit,
trash,
message,
check,
checkCircle,
undo,
shoppingBag,
lock,
deliveryTime,
tools,
screenshot,
picture,
attachment,
focus,
android,
ios,
web,
cloud,
dashboard,
file,
figma,
gitlab,
algolia,
user,
law,
support,
play,
disk,
stars,
musicLandLogo,
close,
heart,
heartOutline,
more,
forward,
pause,
share,
hitParadeLogo,
calendar,
coin,
};
export const art = {
triangle,
circle,
square,
gradientTriangle,
threeCoins,
boost,
boostBig,
};
export const tutorial = {
welcome,
chat: tutorialChat,
coins,
followProgress,
tasks: tutorialTasks,
};
export const background = {
writingBG,
studioBG,
studioBG2,
productionBG,
productionBG2,
playbackBG,
playbackBG2,
libraryBG,
libraryBG2,
profileBG,
hitParadeBG,
homeBG,
homeBGWeb: require("./UI/homeBGWeb.png"),
};
export const ai = {
nathalie,
theo,
bena,
john,
};
export const videos = {
test:
Platform.OS === "web"
? require("./video/testVideoWeb.mp4")
: require("./video/testVideo.mp4"),
};
export const img = {
placeholder,
placeholder2,
placeholder3,
placeholder4,
profile,
goodVibe,
};