I got an error using gride: "AttributeError: 'NoneType' object has no attribute 'grid'".
This is my code:
root = tk.Tk()
root.configure(bg="black")
# Creates labels
tk.Label(root, image=logo1).pack()
# Creates buttons
tk.Button(root, image=logo2, command=root.destroy).pack().grid(row=0, column=0)
tk.Button(root, image=logo3, command=root.destroy).pack().grid(row=0, column=0)
root.mainloop()